DxLibEx
no_min_max.h
Go to the documentation of this file.
1 /*=============================================================================
2  Copyright (C) 2015-2017 DxLibEx project
3  https://github.com/Nagarei/DxLibEx/
4 
5  Distributed under the Boost Software License, Version 1.0.
6  (See http://www.boost.org/LICENSE_1_0.txt)
7 =============================================================================*/
8 #ifndef DXLE_INC_CONFIG_NO_MIN_MAX_H_
9 #define DXLE_INC_CONFIG_NO_MIN_MAX_H_
10 
11 //Windows.hなどからくる min max マクロがdefineされるのを防ぐ
12 
13 #ifndef NOMINMAX
14 #define NOMINMAX
15 #endif
16 
17 #ifdef max
18 #undef max
19 #endif
20 #ifdef min
21 #undef min
22 #endif
23 
24 #endif