diff options
author | Marc Laukien <marc@zeroc.com> | 2003-02-04 22:32:11 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2003-02-04 22:32:11 +0000 |
commit | 2889fba1ab291cea7f842e098e8ed160f1f5fc66 (patch) | |
tree | 381d2f1da0235a3ab3eb1ec9e042a1231ec7ef4c /cpp/src/IceUtil/Unicode.cpp | |
parent | minor (diff) | |
download | ice-2889fba1ab291cea7f842e098e8ed160f1f5fc66.tar.bz2 ice-2889fba1ab291cea7f842e098e8ed160f1f5fc66.tar.xz ice-2889fba1ab291cea7f842e098e8ed160f1f5fc66.zip |
version update; date change
Diffstat (limited to 'cpp/src/IceUtil/Unicode.cpp')
-rw-r--r-- | cpp/src/IceUtil/Unicode.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/IceUtil/Unicode.cpp b/cpp/src/IceUtil/Unicode.cpp index 570db49fba0..d02e394dc2a 100644 --- a/cpp/src/IceUtil/Unicode.cpp +++ b/cpp/src/IceUtil/Unicode.cpp @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2002 +// Copyright (c) 2003 // ZeroC, Inc. // Billerica, MA, USA // @@ -103,14 +103,14 @@ IceUtil::stringToWstring(const string& str) } else if(c < 0xfc) // 111110xx { - // Length 5 and 6 is declared invalid in Unicode 3.1 and ISO 10646:2002. + // Length 5 and 6 is declared invalid in Unicode 3.1 and ISO 10646:2003. wc = c & 3; len = 5; minval = 0x110000; } else if(c < 0xfe) // 1111110x { - // Length 5 and 6 is declared invalid in Unicode 3.1 and ISO 10646:2002. + // Length 5 and 6 is declared invalid in Unicode 3.1 and ISO 10646:2003. wc = c & 1; len = 6; minval = 0x4000000; |