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 2b92afe037a..2a98d72fa3f 100644
--- a/cpp/src/Ice/LoggerUtil.cpp
+++ b/cpp/src/Ice/LoggerUtil.cpp
@@ -16,10 +16,10 @@
using namespace std;
-namespace IceInternal
+namespace IceUtilInternal
{
-bool printStackTraces = false;
+extern bool printStackTraces;
}
@@ -40,7 +40,7 @@ Ice::LoggerOutputBase&
Ice::operator<<(Ice::LoggerOutputBase& out, const std::exception& ex)
{
#ifdef __GNUC__
- if(IceInternal::printStackTraces)
+ if(IceUtilInternal::printStackTraces)
{
const ::IceUtil::Exception* exception = dynamic_cast<const ::IceUtil::Exception*>(&ex);
if(exception)