summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2016-05-11 15:00:49 -0700
committerMark Spruiell <mes@zeroc.com>2016-05-11 15:00:49 -0700
commit13c28e86631e3fa4ab29f6be629f37fde3d08b6e (patch)
treec86e9097d8c0dc9cbf514c67551b65d3d0c640ee /cpp/src
parentIceUtil and Slice msbuild updates (diff)
downloadice-13c28e86631e3fa4ab29f6be629f37fde3d08b6e.tar.bz2
ice-13c28e86631e3fa4ab29f6be629f37fde3d08b6e.tar.xz
ice-13c28e86631e3fa4ab29f6be629f37fde3d08b6e.zip
stream API fix
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/Ice/Value.cpp8
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