summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Stream.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2012-10-15 13:52:10 -0700
committerMark Spruiell <mes@zeroc.com>2012-10-15 13:52:10 -0700
commiteb78cf7bfb7038af9063547a2183861205325796 (patch)
tree22f0ffcb06cd2e47468b0a1a59ffcd34eac30eae /cpp/src/Ice/Stream.cpp
parentMerge branch 'master' of ssh://git/home/git/ice (diff)
downloadice-eb78cf7bfb7038af9063547a2183861205325796.tar.bz2
ice-eb78cf7bfb7038af9063547a2183861205325796.tar.xz
ice-eb78cf7bfb7038af9063547a2183861205325796.zip
Fixes for stream API, PHP 5.4, Python 3.3
Diffstat (limited to 'cpp/src/Ice/Stream.cpp')
-rw-r--r--cpp/src/Ice/Stream.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/cpp/src/Ice/Stream.cpp b/cpp/src/Ice/Stream.cpp
index 3ff69d76bac..58d98324113 100644
--- a/cpp/src/Ice/Stream.cpp
+++ b/cpp/src/Ice/Stream.cpp
@@ -15,3 +15,27 @@ using namespace IceInternal;
IceUtil::Shared* Ice::upCast(InputStream* p) { return p; }
IceUtil::Shared* Ice::upCast(OutputStream* p) { return p; }
+
+void
+Ice::UserExceptionReader::__writeImpl(::IceInternal::BasicStream*) const
+{
+ assert(false); // Should never be called.
+}
+
+void
+Ice::UserExceptionReader::__readImpl(::IceInternal::BasicStream*)
+{
+ assert(false); // Should never be called.
+}
+
+void
+Ice::UserExceptionWriter::__writeImpl(::IceInternal::BasicStream*) const
+{
+ assert(false); // Should never be called.
+}
+
+void
+Ice::UserExceptionWriter::__readImpl(::IceInternal::BasicStream*)
+{
+ assert(false); // Should never be called.
+}