diff options
author | Mark Spruiell <mes@zeroc.com> | 2016-05-11 15:00:49 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2016-05-11 15:00:49 -0700 |
commit | 13c28e86631e3fa4ab29f6be629f37fde3d08b6e (patch) | |
tree | c86e9097d8c0dc9cbf514c67551b65d3d0c640ee /cpp/src/Ice/Value.cpp | |
parent | IceUtil and Slice msbuild updates (diff) | |
download | ice-13c28e86631e3fa4ab29f6be629f37fde3d08b6e.tar.bz2 ice-13c28e86631e3fa4ab29f6be629f37fde3d08b6e.tar.xz ice-13c28e86631e3fa4ab29f6be629f37fde3d08b6e.zip |
stream API fix
Diffstat (limited to 'cpp/src/Ice/Value.cpp')
-rw-r--r-- | cpp/src/Ice/Value.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/Ice/Value.cpp b/cpp/src/Ice/Value.cpp index 57c3aad7384..a489c5500be 100644 --- a/cpp/src/Ice/Value.cpp +++ b/cpp/src/Ice/Value.cpp @@ -31,17 +31,17 @@ Ice::Value::ice_postUnmarshal() void Ice::Value::__write(Ice::OutputStream* os) const { - os->startObject(0); + os->startValue(0); __writeImpl(os); - os->endObject(); + os->endValue(); } void Ice::Value::__read(Ice::InputStream* is) { - is->startObject(); + is->startValue(); __readImpl(is); - is->endObject(false); + is->endValue(false); } namespace |