diff options
| author | OGINO Masanori <masanori.ogino@gmail.com> | 2013-07-31 07:13:38 +0900 |
|---|---|---|
| committer | OGINO Masanori <masanori.ogino@gmail.com> | 2013-07-31 07:13:38 +0900 |
| commit | 5ec1d5b69d8eb81b9b9f4381e9e4b8bbea6e6a5e (patch) | |
| tree | c55159743ec05ebc9513f35dd020dd2f3ac2d96a | |
| parent | 436d9fa45d7df98f49bc036de4254d5946478c5c (diff) | |
| download | rust-5ec1d5b69d8eb81b9b9f4381e9e4b8bbea6e6a5e.tar.gz rust-5ec1d5b69d8eb81b9b9f4381e9e4b8bbea6e6a5e.zip | |
FALSE is not 1u8 but 0u8, of cource.
Signed-off-by: OGINO Masanori <masanori.ogino@gmail.com>
| -rw-r--r-- | src/libextra/unicode.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libextra/unicode.rs b/src/libextra/unicode.rs index 1b860cf2281..9b502216fc1 100644 --- a/src/libextra/unicode.rs +++ b/src/libextra/unicode.rs @@ -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 |
