summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/LoggerUtil.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/Ice/LoggerUtil.cpp')
-rw-r--r--cpp/src/Ice/LoggerUtil.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/Ice/LoggerUtil.cpp b/cpp/src/Ice/LoggerUtil.cpp
index 1b803bc304a..ca19aea13dd 100644
--- a/cpp/src/Ice/LoggerUtil.cpp
+++ b/cpp/src/Ice/LoggerUtil.cpp
@@ -29,7 +29,7 @@ void
Ice::Warning::flush()
{
string s = _str.str();
- if (!s.empty())
+ if(!s.empty())
{
_logger->warning(s);
}
@@ -63,7 +63,7 @@ void
Ice::Error::flush()
{
string s = _str.str();
- if (!s.empty())
+ if(!s.empty())
{
_logger->error(s);
}
@@ -98,7 +98,7 @@ void
Ice::Trace::flush()
{
string s = _str.str();
- if (!s.empty())
+ if(!s.empty())
{
_logger->trace(_category, s);
}