summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2006-04-07 19:18:48 +0000
committerMark Spruiell <mes@zeroc.com>2006-04-07 19:18:48 +0000
commit35005a61c69e19dbe5239478aa3746a6aec23138 (patch)
treeb4931f153c3a7f0579f71499231f557481492208 /cpp/src
parentremoving setDefaultContext (diff)
downloadice-35005a61c69e19dbe5239478aa3746a6aec23138.tar.bz2
ice-35005a61c69e19dbe5239478aa3746a6aec23138.tar.xz
ice-35005a61c69e19dbe5239478aa3746a6aec23138.zip
deprecate fix for bug 932
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/slice2cpp/Gen.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/src/slice2cpp/Gen.cpp b/cpp/src/slice2cpp/Gen.cpp
index a44afb6d9f8..c0b4019fe7e 100644
--- a/cpp/src/slice2cpp/Gen.cpp
+++ b/cpp/src/slice2cpp/Gen.cpp
@@ -1774,8 +1774,7 @@ Slice::Gen::ProxyVisitor::visitOperation(const OperationPtr& p)
}
H << fixKwd(name) << spar << args << "__defaultContext()" << epar << ';';
H << eb;
- H << nl << deprecateSymbol << retS << ' ' << fixKwd(name) << spar << params << "const ::Ice::Context&" << epar
- << ';';
+ H << nl << retS << ' ' << fixKwd(name) << spar << params << "const ::Ice::Context&" << epar << ';';
C << sp << nl << retS << nl << "IceProxy" << scoped << spar << paramsDecl << "const ::Ice::Context& __ctx" << epar;
C << sb;