From 4cada81a1bf05eb8ea49b09b53fc09deb843bc46 Mon Sep 17 00:00:00 2001 From: Marc Laukien Date: Sat, 15 Sep 2001 08:13:54 +0000 Subject: started with phonebook demo --- cpp/src/slice2cpp/GenUtil.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'cpp/src/slice2cpp/GenUtil.cpp') diff --git a/cpp/src/slice2cpp/GenUtil.cpp b/cpp/src/slice2cpp/GenUtil.cpp index 9fa50d2553c..96c480a89d3 100644 --- a/cpp/src/slice2cpp/GenUtil.cpp +++ b/cpp/src/slice2cpp/GenUtil.cpp @@ -303,8 +303,8 @@ Slice::writeMarshalUnmarshalCode(Output& out, const TypePtr& type, const string& } else { - out << nl << seq->scope() << "::__" << func << stream << ", " << param << ", " << seq->scope() - << "::__U__" << seq->name() << "());"; + out << nl << seq->scope() << "__" << func << stream << ", " << param << ", " << seq->scope() + << "__U__" << seq->name() << "());"; } return; } @@ -312,8 +312,8 @@ Slice::writeMarshalUnmarshalCode(Output& out, const TypePtr& type, const string& DictionaryPtr dict = DictionaryPtr::dynamicCast(type); if (dict) { - out << nl << dict->scope() << "::__" << func << stream << ", " << param << ", " << dict->scope() - << "::__U__" << dict->name() << "());"; + out << nl << dict->scope() << "__" << func << stream << ", " << param << ", " << dict->scope() + << "__U__" << dict->name() << "());"; return; } @@ -328,7 +328,7 @@ Slice::writeMarshalUnmarshalCode(Output& out, const TypePtr& type, const string& constructed = proxy->_class(); } - out << nl << constructed->scope() << "::__" << func << stream << ", " << param << ");"; + out << nl << constructed->scope() << "__" << func << stream << ", " << param << ");"; } void -- cgit v1.2.3