File tree 1 file changed +11
-5
lines changed
1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change 128
128
129
129
130
130
#if !defined(_DEBUG) && !defined(_PROFILE)
131
- #define _RELEASE // exclude code useful only for debug
131
+ #define _RELEASE // exclude code useful only for debug
132
132
#endif
133
133
134
134
135
135
#if defined(_MSC_VER) && _MSC_VER >= 1400
136
- // disable the deprecated warnings for the CRT functions.
137
- // #ifndef _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES
138
- // #define _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES 1
139
- // #endif
140
136
#ifndef _CRT_SECURE_NO_WARNINGS
141
137
#define _CRT_SECURE_NO_WARNINGS 1
142
138
#endif
149
145
#ifndef _CRT_NON_CONFORMING_SWPRINTFS
150
146
#define _CRT_NON_CONFORMING_SWPRINTFS 1
151
147
#endif
148
+ #ifndef _CRT_SECURE_CPP_OVERLOAD_SECURE_NAMES
149
+ #define _CRT_SECURE_CPP_OVERLOAD_SECURE_NAMES 0 // disable automatically overloading CPP names to secure versions
150
+ #endif
151
+ #ifndef _ITERATOR_DEBUG_LEVEL
152
+ #ifndef _DEBUG
153
+ #define _ITERATOR_DEBUG_LEVEL 0
154
+ #else
155
+ #define _ITERATOR_DEBUG_LEVEL 1 // disable std iterator debugging even in Debug, as it is very slow
156
+ #endif
157
+ #endif
152
158
#endif
153
159
154
160
You can’t perform that action at this time.
0 commit comments