summaryrefslogtreecommitdiff
path: root/cpp/include/Ice/ExceptionHelpers.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/include/Ice/ExceptionHelpers.h')
-rw-r--r--cpp/include/Ice/ExceptionHelpers.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/include/Ice/ExceptionHelpers.h b/cpp/include/Ice/ExceptionHelpers.h
index 320f5de9aaa..04c37669f07 100644
--- a/cpp/include/Ice/ExceptionHelpers.h
+++ b/cpp/include/Ice/ExceptionHelpers.h
@@ -45,20 +45,20 @@ public:
protected:
- virtual void iceWriteImpl(Ice::OutputStream* os) const override
+ virtual void __writeImpl(Ice::OutputStream* os) const override
{
os->startSlice(T::ice_staticId(), -1, std::is_same<B, Ice::LocalException>::value ? true : false);
Ice::StreamWriter<T, Ice::OutputStream>::write(os, static_cast<const T&>(*this));
os->endSlice();
- B::iceWriteImpl(os);
+ B::__writeImpl(os);
}
- virtual void iceReadImpl(Ice::InputStream* is) override
+ virtual void __readImpl(Ice::InputStream* is) override
{
is->startSlice();
Ice::StreamReader<T, ::Ice::InputStream>::read(is, static_cast<T&>(*this));
is->endSlice();
- B::iceReadImpl(is);
+ B::__readImpl(is);
}
};