diff options
Diffstat (limited to 'cpp/src/IceUtil/Exception.cpp')
-rw-r--r-- | cpp/src/IceUtil/Exception.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceUtil/Exception.cpp b/cpp/src/IceUtil/Exception.cpp index 38afb2406ef..eab176ff011 100644 --- a/cpp/src/IceUtil/Exception.cpp +++ b/cpp/src/IceUtil/Exception.cpp @@ -38,7 +38,7 @@ IceUtil::Exception::ice_name() const void IceUtil::Exception::ice_print(ostream& out) const { - if (_file && _line > 0) + if(_file && _line > 0) { out << _file << ':' << _line << ": "; } |