diff options
Diffstat (limited to 'cpp/test/Ice/interceptor/MyObjectI.cpp')
-rw-r--r-- | cpp/test/Ice/interceptor/MyObjectI.cpp | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/cpp/test/Ice/interceptor/MyObjectI.cpp b/cpp/test/Ice/interceptor/MyObjectI.cpp index 0ebb06cdd17..72c64aba5fb 100644 --- a/cpp/test/Ice/interceptor/MyObjectI.cpp +++ b/cpp/test/Ice/interceptor/MyObjectI.cpp @@ -20,27 +20,23 @@ MySystemException::MySystemException(const char* file, int line) : { } -MySystemException::~MySystemException() throw() +MySystemException::~MySystemException() ICE_NOEXCEPT { } string MySystemException::ice_id() const { - return "MySystemException"; -} - -string -MySystemException::ice_name() const -{ - return ice_id(); + return "::MySystemException"; } +#ifndef ICE_CPP11_MAPPING MySystemException* MySystemException::ice_clone() const { return new MySystemException(*this); } +#endif void MySystemException::ice_throw() const |