From 2889fba1ab291cea7f842e098e8ed160f1f5fc66 Mon Sep 17 00:00:00 2001 From: Marc Laukien Date: Tue, 4 Feb 2003 22:32:11 +0000 Subject: version update; date change --- cpp/src/IceUtil/Unicode.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpp/src/IceUtil/Unicode.cpp') 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; -- cgit v1.2.3