diff options
author | Mark Spruiell <mes@zeroc.com> | 2016-03-10 12:09:59 -0800 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2016-03-10 12:09:59 -0800 |
commit | bbfa0bd65b0d62c20035b4b49ed4998ef647f327 (patch) | |
tree | ff9af7f5a6eae4645c8522e36514cdb1c483a380 /cpp | |
parent | Update version to 3.6.2 (diff) | |
download | ice-bbfa0bd65b0d62c20035b4b49ed4998ef647f327.tar.bz2 ice-bbfa0bd65b0d62c20035b4b49ed4998ef647f327.tar.xz ice-bbfa0bd65b0d62c20035b4b49ed4998ef647f327.zip |
C# doc comment fix
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/slice2cs/Gen.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/slice2cs/Gen.cpp b/cpp/src/slice2cs/Gen.cpp index 2c2ccf0eb2d..76ef3049cbc 100644 --- a/cpp/src/slice2cs/Gen.cpp +++ b/cpp/src/slice2cs/Gen.cpp @@ -5212,12 +5212,12 @@ Slice::Gen::ProxyVisitor::visitOperation(const OperationPtr& p) _out << nl << "Ice.AsyncResult<" << delType << "> begin_" << p->name() << spar << paramsNewAsync << epar << ';'; _out << sp; + writeDocCommentAMI(p, InParam, deprecateReason, + "<param name=\"ctx__\">The Context map to send with the invocation.</param>"); if(!deprecateReason.empty()) { _out << nl << "[_System.Obsolete(\"" << deprecateReason << "\")]"; } - writeDocCommentAMI(p, InParam, deprecateReason, - "<param name=\"ctx__\">The Context map to send with the invocation.</param>"); _out << nl << "Ice.AsyncResult<" << delType << "> begin_" << p->name() << spar << paramsNewAsync << "_System.Collections.Generic.Dictionary<string, string> ctx__" << epar << ';'; |