diff options
| author | practicalswift <[email protected]> | 2017-06-21 14:28:26 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2017-06-21 14:28:26 +0200 |
| commit | 700d8d85bd728d53cc3bebb0944c92766b410583 (patch) | |
| tree | 0d001e24190f4797866ad36bcbc9c72fce903392 /src/init.cpp | |
| parent | Merge #10537: Few Minor per-utxo assert-semantics re-adds and tweak (diff) | |
| download | discoin-700d8d85bd728d53cc3bebb0944c92766b410583.tar.xz discoin-700d8d85bd728d53cc3bebb0944c92766b410583.zip | |
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
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/init.cpp b/src/init.cpp index ed7695344..e21395889 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -844,8 +844,6 @@ bool AppInitBasicSetup() // Turn off Microsoft heap dump noise _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE); _CrtSetReportFile(_CRT_WARN, CreateFileA("NUL", GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0)); -#endif -#if _MSC_VER >= 1400 // Disable confusing "helpful" text message on abort, Ctrl-C _set_abort_behavior(0, _WRITE_ABORT_MSG | _CALL_REPORTFAULT); #endif |