diff options
author | Mark Spruiell <mes@zeroc.com> | 2012-10-15 13:52:10 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2012-10-15 13:52:10 -0700 |
commit | eb78cf7bfb7038af9063547a2183861205325796 (patch) | |
tree | 22f0ffcb06cd2e47468b0a1a59ffcd34eac30eae /cpp/src | |
parent | Merge branch 'master' of ssh://git/home/git/ice (diff) | |
download | ice-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')
-rw-r--r-- | cpp/src/Ice/Stream.cpp | 24 |
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. +} |