Skip to content

Commit 6947133

Browse files
authored
common: disable std iterator debugging
1 parent 6180ce1 commit 6947133

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

libs/Common/Config.h

+11-5
Original file line numberDiff line numberDiff line change
@@ -128,15 +128,11 @@
128128

129129

130130
#if !defined(_DEBUG) && !defined(_PROFILE)
131-
#define _RELEASE // exclude code useful only for debug
131+
#define _RELEASE // exclude code useful only for debug
132132
#endif
133133

134134

135135
#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
140136
#ifndef _CRT_SECURE_NO_WARNINGS
141137
#define _CRT_SECURE_NO_WARNINGS 1
142138
#endif
@@ -149,6 +145,16 @@
149145
#ifndef _CRT_NON_CONFORMING_SWPRINTFS
150146
#define _CRT_NON_CONFORMING_SWPRINTFS 1
151147
#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
152158
#endif
153159

154160

0 commit comments

Comments
 (0)