diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-01-27 12:15:40 -0330 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-01-27 12:15:40 -0330 |
commit | 34e0afaa23ff0d3dfbf59115c20c5145d0b5b71d (patch) | |
tree | 7959aaf7446c21985e01b48b0d5fdf282a5f8f35 /cpp/src/Slice | |
parent | Fixed bug 3672 - test/Ice/udp memory limit exception (diff) | |
download | ice-34e0afaa23ff0d3dfbf59115c20c5145d0b5b71d.tar.bz2 ice-34e0afaa23ff0d3dfbf59115c20c5145d0b5b71d.tar.xz ice-34e0afaa23ff0d3dfbf59115c20c5145d0b5b71d.zip |
Fixed some BCC compile errors
Diffstat (limited to 'cpp/src/Slice')
-rw-r--r-- | cpp/src/Slice/FileTracker.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Slice/FileTracker.cpp b/cpp/src/Slice/FileTracker.cpp index 438670cf2f8..43d9632ad17 100644 --- a/cpp/src/Slice/FileTracker.cpp +++ b/cpp/src/Slice/FileTracker.cpp @@ -16,7 +16,7 @@ using namespace std; Slice::FileException::FileException(const char* file, int line, const string& r) : - Exception(file, line), + IceUtil::Exception(file, line), _reason(r) { } @@ -36,7 +36,7 @@ Slice::FileException::ice_name() const void Slice::FileException::ice_print(ostream& out) const { - Exception::ice_print(out); + IceUtil::Exception::ice_print(out); out << ": " << _reason; } |