diff options
author | Mark Spruiell <mes@zeroc.com> | 2005-06-20 19:46:53 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2005-06-20 19:46:53 +0000 |
commit | 848d7997c59284bd6c2bbd2d74becdc1aaf567d6 (patch) | |
tree | 171e3281b535e80391f9f585205f06fcc56c6182 /cpp/src | |
parent | adding missing files from midp profile implementation (diff) | |
download | ice-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-x | cpp/src/slice2cs/Gen.cpp | 2 |
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) { |