aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2017-06-22 16:10:58 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2017-06-22 16:11:09 +0200
commit1d991f6f18df9ef46c0f3df5b0dbbe11f52a927d (patch)
tree100c02c0647d4241fde6f7be22ee4fe38338c146
parentc68a9a69278aa194fed96bd9733d32af3690a11e (diff)
parent700d8d85bd728d53cc3bebb0944c92766b410583 (diff)
downloadbitcoin-1d991f6f18df9ef46c0f3df5b0dbbe11f52a927d.tar.xz
Merge #10642: Remove obsolete _MSC_VER check
700d8d8 Remove obsolete _MSC_VER check (practicalswift) Tree-SHA512: 3b33f3ce90a3b3b6abec74990fab88402f896402fc563b7081575f85dab05fc7e21fd4c640ca4b9a57a6ca01c5c8ca931be37cac6fa62968fc7b84c719ec6ede
-rw-r--r--src/init.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/init.cpp b/src/init.cpp
index ed7695344d..e213958893 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