From cb4d5772e9a7a9228577df83027e45ec7de022ea Mon Sep 17 00:00:00 2001 From: Benoit Foucher Date: Wed, 5 Nov 2014 15:33:01 +0100 Subject: Fixed ICE-5607: relaxed Ice.MessageSizeMax --- cpp/src/slice2freeze/Main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpp/src/slice2freeze/Main.cpp') diff --git a/cpp/src/slice2freeze/Main.cpp b/cpp/src/slice2freeze/Main.cpp index ada958b3c23..4c4579affac 100644 --- a/cpp/src/slice2freeze/Main.cpp +++ b/cpp/src/slice2freeze/Main.cpp @@ -637,7 +637,7 @@ writeDictC(const string& name, const string& absolute, const Dict& dict, const v assert(!indexTypes[i].type->usesClasses()); C << nl << "IceInternal::InstancePtr __instance = IceInternal::getInstance(__communicator);"; - C << nl << "IceInternal::BasicStream __stream(__instance.get(), __encoding, true);"; + C << nl << "IceInternal::BasicStream __stream(__instance.get(), __encoding);"; string valueS; if(dict.indices[i].caseSensitive) @@ -1166,7 +1166,7 @@ writeIndexC(const TypePtr& type, const TypePtr& memberType, const string& member C << nl << fullName << "::" << "marshalKey(" << inputType << " __index, Freeze::Key& __bytes) const"; C << sb; C << nl << "IceInternal::InstancePtr __instance = IceInternal::getInstance(_communicator);"; - C << nl << "IceInternal::BasicStream __stream(__instance.get(), _encoding, true);"; + C << nl << "IceInternal::BasicStream __stream(__instance.get(), _encoding);"; string valueS; if(caseSensitive) -- cgit v1.2.3