mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-09 07:22:11 +00:00
ICU-5376 use unsigned value for IternatedChar.charValue.
X-SVN-Rev: 22118
This commit is contained in:
parent
67b0330ac7
commit
621fd73d0b
1 changed files with 6 additions and 6 deletions
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
**********************************************************************
|
||||
* Copyright (C) 2005-2006, International Business Machines
|
||||
* Copyright (C) 2005-2007, International Business Machines
|
||||
* Corporation and others. All Rights Reserved.
|
||||
**********************************************************************
|
||||
*/
|
||||
|
@ -30,11 +30,11 @@ U_NAMESPACE_BEGIN
|
|||
class IteratedChar : public UMemory
|
||||
{
|
||||
public:
|
||||
int32_t charValue; // 1-4 bytes from the raw input data
|
||||
int32_t index;
|
||||
int32_t nextIndex;
|
||||
UBool error;
|
||||
UBool done;
|
||||
uint32_t charValue; // 1-4 bytes from the raw input data
|
||||
int32_t index;
|
||||
int32_t nextIndex;
|
||||
UBool error;
|
||||
UBool done;
|
||||
|
||||
public:
|
||||
IteratedChar();
|
||||
|
|
Loading…
Add table
Reference in a new issue