diff options
Diffstat (limited to 'cpp/src/IceUtil/Exception.cpp')
-rw-r--r-- | cpp/src/IceUtil/Exception.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceUtil/Exception.cpp b/cpp/src/IceUtil/Exception.cpp index c7619eadcd3..adcced92d33 100644 --- a/cpp/src/IceUtil/Exception.cpp +++ b/cpp/src/IceUtil/Exception.cpp @@ -47,7 +47,7 @@ IceUtil::Exception::ice_print(ostream& out) const { if(_file && _line > 0) { - out << _file << ':' << _line << ": "; + out << _file << ':' << _line << ": "; } out << ice_name(); } @@ -88,7 +88,7 @@ IceUtil::NullHandleException::NullHandleException(const char* file, int line) : { if(nullHandleAbort) { - abort(); + abort(); } } |