diff options
author | Marc Laukien <marc@zeroc.com> | 2002-01-19 17:04:00 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-01-19 17:04:00 +0000 |
commit | eb70bb3c47726cdb84217e95c3b578306e90b120 (patch) | |
tree | c7a503e5ee44b384e410bc8d5700476e0f8d7cf9 | |
parent | some fixes (diff) | |
download | ice-eb70bb3c47726cdb84217e95c3b578306e90b120.tar.bz2 ice-eb70bb3c47726cdb84217e95c3b578306e90b120.tar.xz ice-eb70bb3c47726cdb84217e95c3b578306e90b120.zip |
fix
-rw-r--r-- | cpp/src/IceUtil/Unicode.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceUtil/Unicode.cpp b/cpp/src/IceUtil/Unicode.cpp index 631adddcce2..1cff84ab08a 100644 --- a/cpp/src/IceUtil/Unicode.cpp +++ b/cpp/src/IceUtil/Unicode.cpp @@ -109,7 +109,7 @@ IceUtil::stringToWstring(const string& str) // Length 5 and 6 is declared invalid in Unicode 3.1 and ISO 10646:2001. wc = c & 1; len = 6; - minval = 0; // TODO + minval = 0x4000000; } #endif else |