diff options
Diffstat (limited to 'cppe/src/IceE/ExceptionBase.cpp')
-rw-r--r-- | cppe/src/IceE/ExceptionBase.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cppe/src/IceE/ExceptionBase.cpp b/cppe/src/IceE/ExceptionBase.cpp index 1396a516f3a..83467e3a8a5 100644 --- a/cppe/src/IceE/ExceptionBase.cpp +++ b/cppe/src/IceE/ExceptionBase.cpp @@ -99,12 +99,12 @@ IceUtil::NullHandleException::NullHandleException(const char* file, int line) : if(nullHandleAbort) { #ifdef _WIN32_WCE - // - // WinCE does not appear to have abort() - // - exit(-1); + // + // WinCE does not appear to have abort() + // + exit(-1); #else - abort(); + abort(); #endif } } |