diff options
author | Mark Spruiell <mes@zeroc.com> | 2004-03-01 16:47:32 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2004-03-01 16:47:32 +0000 |
commit | 2b7799c4f3ad15937752dda2303ffc508c5deeba (patch) | |
tree | 89f4f26ee9dbb8bb0ff3fb54e547f605e80b73a5 /cpp/src/FreezeScript/Exception.cpp | |
parent | adding Ice::Process for graceful shutdown of IcePack servers (diff) | |
download | ice-2b7799c4f3ad15937752dda2303ffc508c5deeba.tar.bz2 ice-2b7799c4f3ad15937752dda2303ffc508c5deeba.tar.xz ice-2b7799c4f3ad15937752dda2303ffc508c5deeba.zip |
Win32 fix
Diffstat (limited to 'cpp/src/FreezeScript/Exception.cpp')
-rw-r--r-- | cpp/src/FreezeScript/Exception.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cpp/src/FreezeScript/Exception.cpp b/cpp/src/FreezeScript/Exception.cpp index 91ef9739008..ba1b9137434 100644 --- a/cpp/src/FreezeScript/Exception.cpp +++ b/cpp/src/FreezeScript/Exception.cpp @@ -35,7 +35,11 @@ FreezeScript::Exception::ice_name() const void FreezeScript::Exception::ice_print(ostream& out) const { - ::IceUtil::Exception::ice_print(out); +#ifdef _WIN32 + Exception::ice_print(out); +#else + ::IceUtil::Exception::ice_print(out); +#endif out << ":\nerror occurred during transformation"; // TODO if(!_reason.empty()) { |