X-Git-Url: https://git.saurik.com/apple/icu.git/blobdiff_plain/4388f060552cc537e71e957d32f35e9d75a61233..2be6500137966bba13903b24204a44804f9e133a:/icuSources/test/intltest/bytestrietest.cpp?ds=inline diff --git a/icuSources/test/intltest/bytestrietest.cpp b/icuSources/test/intltest/bytestrietest.cpp index 12101d2f..2d7fa6ed 100644 --- a/icuSources/test/intltest/bytestrietest.cpp +++ b/icuSources/test/intltest/bytestrietest.cpp @@ -1,6 +1,6 @@ /* ******************************************************************************* -* Copyright (C) 2010-2011, International Business Machines +* Copyright (C) 2010-2012, International Business Machines * Corporation and others. All Rights Reserved. ******************************************************************************* * file name: bytetrietest.cpp @@ -170,7 +170,7 @@ void BytesTrieTest::TestBranches() { { "t", 0x400000 }, { "uu", 0x800000 }, { "vv", 0x7fffffff }, - { "zz", 0x80000000 } + { "zz", (int32_t)0x80000000 } }; for(int32_t length=2; length<=LENGTHOF(data); ++length) { infoln("TestBranches length=%d", (int)length); @@ -217,7 +217,7 @@ void BytesTrieTest::TestLongBranch() { { "r", 0x333333 }, { "s2345", 0x4444444 }, { "t234567890", 0x77777777 }, - { "z", 0x80000001 } + { "z", (int32_t)0x80000001 } }; checkData(data, LENGTHOF(data)); }