diff options
Diffstat (limited to 'cpp/src/Ice/Exception.cpp')
-rw-r--r-- | cpp/src/Ice/Exception.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/cpp/src/Ice/Exception.cpp b/cpp/src/Ice/Exception.cpp index 95136f5339a..64fbfeb95bf 100644 --- a/cpp/src/Ice/Exception.cpp +++ b/cpp/src/Ice/Exception.cpp @@ -106,7 +106,7 @@ throwMarshalException(const char* file, int line, const string& reason) namespace { -const string __Ice__UserException_ids[] = +const string iceC_Ice_UserException_ids[] = { "::Ice::UserException" }; @@ -116,7 +116,7 @@ const string __Ice__UserException_ids[] = const std::string& Ice::UserException::ice_staticId() { - return __Ice__UserException_ids[0]; + return iceC_Ice_UserException_ids[0]; } #ifdef ICE_CPP11_MAPPING @@ -128,23 +128,23 @@ Ice::UserException::ice_clone() const #endif void -Ice::UserException::__write(::Ice::OutputStream* os) const +Ice::UserException::iceWrite(::Ice::OutputStream* os) const { os->startException(0); - __writeImpl(os); + iceWriteImpl(os); os->endException(); } void -Ice::UserException::__read(::Ice::InputStream* is) +Ice::UserException::iceRead(::Ice::InputStream* is) { is->startException(); - __readImpl(is); + iceReadImpl(is); is->endException(false); } bool -Ice::UserException::__usesClasses() const +Ice::UserException::iceUsesClasses() const { return false; } @@ -173,7 +173,7 @@ Ice::LocalException::ice_clone() const namespace { -const string __Ice__LocalException_ids[] = +const string iceC_Ice_LocalException_ids[] = { "::Ice::LocalException" }; @@ -183,7 +183,7 @@ const string __Ice__LocalException_ids[] = const std::string& Ice::LocalException::ice_staticId() { - return __Ice__LocalException_ids[0]; + return iceC_Ice_LocalException_ids[0]; } Ice::SystemException::SystemException(const char* file, int line) : @@ -209,7 +209,7 @@ Ice::SystemException::ice_clone() const namespace { -const string __Ice__SystemException_ids[] = +const string iceC_Ice_SystemException_ids[] = { "::Ice::SystemException" }; @@ -219,7 +219,7 @@ const string __Ice__SystemException_ids[] = const std::string& Ice::SystemException::ice_staticId() { - return __Ice__SystemException_ids[0]; + return iceC_Ice_SystemException_ids[0]; } void |