diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2008-11-05 12:21:24 -0330 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2008-11-05 12:21:24 -0330 |
commit | e67bc9d134e2727e1da51729665c672904daf6c0 (patch) | |
tree | 784284319746e5e4a807c469c50ed5c8b671193d /cpp/src/slice2cs/Gen.cpp | |
parent | Merge branch 'R3_3_branch' (diff) | |
parent | Bug 3386 - slice errors with wrong line numbers (diff) | |
download | ice-e67bc9d134e2727e1da51729665c672904daf6c0.tar.bz2 ice-e67bc9d134e2727e1da51729665c672904daf6c0.tar.xz ice-e67bc9d134e2727e1da51729665c672904daf6c0.zip |
Merge branch 'R3_3_branch'
Diffstat (limited to 'cpp/src/slice2cs/Gen.cpp')
-rw-r--r-- | 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 a3aa45c4ce9..a3a02ab55c9 100644 --- a/cpp/src/slice2cs/Gen.cpp +++ b/cpp/src/slice2cs/Gen.cpp @@ -1223,7 +1223,7 @@ Slice::Gen::generateChecksums(const UnitPtr& u) string className = "X" + IceUtil::generateUUID(); for(string::size_type pos = 1; pos < className.size(); ++pos) { - if(!isalnum(className[pos])) + if(!isalnum(static_cast<unsigned char>(className[pos]))) { className[pos] = '_'; } |