summaryrefslogtreecommitdiff
path: root/cpp/src/slice2cs/CsUtil.cpp
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2017-03-07 20:12:09 +0100
committerJose <jose@zeroc.com>2017-03-07 20:12:09 +0100
commita52fd9cee5e82ebbbd22bc930981e38e55ff7b52 (patch)
tree538356526c6ddf6f04a80707c141e15d5f912ce8 /cpp/src/slice2cs/CsUtil.cpp
parentFix C++11 build failure (diff)
downloadice-a52fd9cee5e82ebbbd22bc930981e38e55ff7b52.tar.bz2
ice-a52fd9cee5e82ebbbd22bc930981e38e55ff7b52.tar.xz
ice-a52fd9cee5e82ebbbd22bc930981e38e55ff7b52.zip
Fixed (ICE-7649) - Bogus generated code for csharp marshalled-result
Diffstat (limited to 'cpp/src/slice2cs/CsUtil.cpp')
-rw-r--r--cpp/src/slice2cs/CsUtil.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/slice2cs/CsUtil.cpp b/cpp/src/slice2cs/CsUtil.cpp
index 191f8162acc..d518ac55823 100644
--- a/cpp/src/slice2cs/CsUtil.cpp
+++ b/cpp/src/slice2cs/CsUtil.cpp
@@ -411,7 +411,7 @@ Slice::CsGenerator::resultType(const OperationPtr& op, bool dispatch)
ClassDefPtr cl = ClassDefPtr::dynamicCast(op->container()); // Get the class containing the op.
if(dispatch && op->hasMarshaledResult())
{
- return resultStructName(cl->name(), op->name(), true);
+ return fixId(cl->scope() + resultStructName(cl->name(), op->name(), true));
}
string t;