diff options
Diffstat (limited to 'cpp/src/Slice/CsUtil.cpp')
-rwxr-xr-x | cpp/src/Slice/CsUtil.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/src/Slice/CsUtil.cpp b/cpp/src/Slice/CsUtil.cpp index c5c94d78366..9e9220c9597 100755 --- a/cpp/src/Slice/CsUtil.cpp +++ b/cpp/src/Slice/CsUtil.cpp @@ -60,8 +60,9 @@ lookupKwd(const string& name) }; found = binary_search(&memberList[0], &memberList[sizeof(memberList) / sizeof(*memberList)], - name); - return found ? "_cs_" + name : name; + name, + Slice::CICompare()); + return found ? "_Ice_" + name : name; } // |