summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2005-06-20 19:46:53 +0000
committerMark Spruiell <mes@zeroc.com>2005-06-20 19:46:53 +0000
commit848d7997c59284bd6c2bbd2d74becdc1aaf567d6 (patch)
tree171e3281b535e80391f9f585205f06fcc56c6182 /cpp/src
parentadding missing files from midp profile implementation (diff)
downloadice-848d7997c59284bd6c2bbd2d74becdc1aaf567d6.tar.bz2
ice-848d7997c59284bd6c2bbd2d74becdc1aaf567d6.tar.xz
ice-848d7997c59284bd6c2bbd2d74becdc1aaf567d6.zip
fixing AMI bug: __response must be generated as protected internal
Diffstat (limited to 'cpp/src')
-rwxr-xr-xcpp/src/slice2cs/Gen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/slice2cs/Gen.cpp b/cpp/src/slice2cs/Gen.cpp
index 89ec7724928..531f21456b5 100755
--- a/cpp/src/slice2cs/Gen.cpp
+++ b/cpp/src/slice2cs/Gen.cpp
@@ -4215,7 +4215,7 @@ Slice::Gen::AsyncVisitor::visitOperation(const OperationPtr& p)
_out << nl << "__send();";
_out << eb;
- _out << sp << nl << "protected override void __response(bool __ok)";
+ _out << sp << nl << "protected internal override void __response(bool __ok)";
_out << sb;
for(q = outParams.begin(); q != outParams.end(); ++q)
{