FALSE is not 1u8 but 0u8, of cource.
Signed-off-by: OGINO Masanori <masanori.ogino@gmail.com>
This commit is contained in:
parent
436d9fa45d
commit
5ec1d5b69d
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ pub mod icu {
|
|||
pub type UChar32 = char;
|
||||
|
||||
pub static TRUE : u8 = 1u8;
|
||||
pub static FALSE : u8 = 1u8;
|
||||
pub static FALSE : u8 = 0u8;
|
||||
|
||||
pub static UCHAR_ALPHABETIC : UProperty = 0;
|
||||
pub static UCHAR_BINARY_START : UProperty = 0; // = UCHAR_ALPHABETIC
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue