diff options
Diffstat (limited to 'cpp/src/slice2cpp/Gen.cpp')
-rw-r--r-- | cpp/src/slice2cpp/Gen.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/slice2cpp/Gen.cpp b/cpp/src/slice2cpp/Gen.cpp index 457b6ad4d66..ad250e25430 100644 --- a/cpp/src/slice2cpp/Gen.cpp +++ b/cpp/src/slice2cpp/Gen.cpp @@ -2090,10 +2090,10 @@ Slice::Gen::ProxyVisitor::visitOperation(const OperationPtr& p) string deprecateSymbol = getDeprecateSymbol(p, cl); H << sp << nl << deprecateSymbol << _dllMemberExport << retS << ' ' << fixKwd(name) << spar << paramsDecl << "const ::Ice::Context& __ctx = ::Ice::noExplicitContext" << epar; - H << sb; + H << sb << nl; if(ret) { - H << nl << "return "; + H << "return "; } H << "end_" << name << spar << outParamNamesAMI << "__begin_" + name << spar << argsAMI; H << "__ctx" << "::IceInternal::__dummyCallback" << "0" << "true" << epar << epar << ';'; |