diff options
author | Michi Henning <michi@zeroc.com> | 2009-02-05 14:39:01 +1000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2009-02-05 14:39:01 +1000 |
commit | 400999d070c59c253cdfac9948ff896e2fc2b50e (patch) | |
tree | a94faafdb1bcabe64b126da0b1e65f74d3afd571 /cpp/src | |
parent | Squashed commit of the following: (diff) | |
download | ice-400999d070c59c253cdfac9948ff896e2fc2b50e.tar.bz2 ice-400999d070c59c253cdfac9948ff896e2fc2b50e.tar.xz ice-400999d070c59c253cdfac9948ff896e2fc2b50e.zip |
Fixed compilation bug with VC60.
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Slice/FileTracker.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/src/Slice/FileTracker.cpp b/cpp/src/Slice/FileTracker.cpp index 051fa6919d6..65dfa682a6f 100644 --- a/cpp/src/Slice/FileTracker.cpp +++ b/cpp/src/Slice/FileTracker.cpp @@ -36,7 +36,11 @@ Slice::FileException::ice_name() const void Slice::FileException::ice_print(ostream& out) const { +#if defined(_MSC_VER) && (_MSC_VER < 1300) + Exception::ice_print(out); +#else IceUtil::Exception::ice_print(out); +#endif out << ": " << _reason; } |