diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-11-09 16:37:33 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-11-09 16:37:33 +0000 |
commit | 87c0f212870119d16f617920186db8d8cdbaacce (patch) | |
tree | 1980eff298c3bd35f71f67421f6d0bda4ce634ec /cpp/src/IceUtil/Options.cpp | |
parent | Back out last change (diff) | |
download | ice-87c0f212870119d16f617920186db8d8cdbaacce.tar.bz2 ice-87c0f212870119d16f617920186db8d8cdbaacce.tar.xz ice-87c0f212870119d16f617920186db8d8cdbaacce.zip |
Readded previous change
Diffstat (limited to 'cpp/src/IceUtil/Options.cpp')
-rwxr-xr-x | cpp/src/IceUtil/Options.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cpp/src/IceUtil/Options.cpp b/cpp/src/IceUtil/Options.cpp index 2a93e0e5eb8..0e9fef64713 100755 --- a/cpp/src/IceUtil/Options.cpp +++ b/cpp/src/IceUtil/Options.cpp @@ -18,6 +18,10 @@ IceUtil::APIException::APIException(const char* file, int line, const string& r) { } +IceUtil::APIException::~APIException() throw() +{ +} + const char* IceUtil::APIException::_name = "IceUtil::APIException"; string @@ -51,6 +55,10 @@ IceUtil::BadOptException::BadOptException(const char* file, int line, const stri { } +IceUtil::BadOptException::~BadOptException() throw() +{ +} + const char* IceUtil::BadOptException::_name = "IceUtil::BadOptException"; string |