From add0784ae2c125efb7deec63b190c4a61638ef8e Mon Sep 17 00:00:00 2001 From: Alex Dupre Date: Sat, 28 Sep 2013 20:25:12 +0200 Subject: [PATCH] Fix compile error. --- src/ripple_app/main/RippleMain.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ripple_app/main/RippleMain.cpp b/src/ripple_app/main/RippleMain.cpp index 960564969..d56c43a41 100644 --- a/src/ripple_app/main/RippleMain.cpp +++ b/src/ripple_app/main/RippleMain.cpp @@ -32,7 +32,7 @@ void RippleMain::onException (ProtectedCall::Exception const& e) const #if BEAST_MSVC ExitProcess(0); #else - std::_Exit(EXIT_FAILURE); + _Exit(EXIT_FAILURE); #endif }