Skip to content

Commit 700d8d8

Browse files
Remove obsolete _MSC_VER check
* MSVC++ 8.0 _MSC_VER == 1400 (Visual Studio 2005) * C++11 is supported since MSVC 2010 * Compiling without C++11 support is no longer possible
1 parent b3eb0d6 commit 700d8d8

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/init.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -844,8 +844,6 @@ bool AppInitBasicSetup()
844844
// Turn off Microsoft heap dump noise
845845
_CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
846846
_CrtSetReportFile(_CRT_WARN, CreateFileA("NUL", GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0));
847-
#endif
848-
#if _MSC_VER >= 1400
849847
// Disable confusing "helpful" text message on abort, Ctrl-C
850848
_set_abort_behavior(0, _WRITE_ABORT_MSG | _CALL_REPORTFAULT);
851849
#endif

0 commit comments

Comments
 (0)