mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-10 07:39:16 +00:00
ICU-10624 Swat clang compile warnings.
X-SVN-Rev: 34861
This commit is contained in:
parent
b2f94a75a8
commit
cabbcecf5c
11 changed files with 16 additions and 28 deletions
|
@ -1,6 +1,6 @@
|
|||
/********************************************************************
|
||||
* COPYRIGHT:
|
||||
* Copyright (c) 1997-2013, International Business Machines Corporation and
|
||||
* Copyright (c) 1997-2014, International Business Machines Corporation and
|
||||
* others. All Rights Reserved.
|
||||
********************************************************************/
|
||||
/*******************************************************************************
|
||||
|
@ -1216,7 +1216,7 @@ TestJitterbug1098(){
|
|||
"&\\'<\\\\",
|
||||
"&\\\"<'\\'",
|
||||
"&'\"'<\\'",
|
||||
'\0'
|
||||
NULL
|
||||
|
||||
};
|
||||
const UCollationResult results1098[] = {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/***********************************************************************
|
||||
* COPYRIGHT:
|
||||
* Copyright (c) 1997-2013, International Business Machines Corporation
|
||||
* Copyright (c) 1997-2014, International Business Machines Corporation
|
||||
* and others. All Rights Reserved.
|
||||
***********************************************************************/
|
||||
|
||||
|
@ -28,8 +28,6 @@
|
|||
#define INFINITE 0
|
||||
#endif
|
||||
|
||||
static const UVersionInfo ICU_452 = {4,5,2,0};
|
||||
|
||||
// Define this to test just a single locale
|
||||
//#define TEST_ONE_LOC "cs_CZ"
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
*******************************************************************************
|
||||
*
|
||||
* Copyright (C) 2005-2009, International Business Machines
|
||||
* Copyright (C) 2005-2014, International Business Machines
|
||||
* Corporation and others. All Rights Reserved.
|
||||
*
|
||||
*******************************************************************************
|
||||
|
@ -25,7 +25,6 @@
|
|||
static const UChar C_TAG[] = {0x3D, 0x3D, 0x3D, 0x3D, 0x3D, 0}; // =====
|
||||
static const UChar C_NAMEZONE[] = {0x6E, 0x61, 0x6D, 0x65, 0x7A, 0x6F, 0x6E, 0x65, 0}; // namezone
|
||||
static const UChar C_NAMEBASE[] = {0x6E, 0x61, 0x6D, 0x65, 0x62, 0x61, 0x73, 0x65, 0}; // namebase
|
||||
static const UChar C_NAMEUTF8[] = {0x6E, 0x61, 0x6D, 0x65, 0x75, 0x74, 0x66, 0x38, 0}; // nameutf8
|
||||
|
||||
static const UChar C_TYPE[] = {0x74, 0x79, 0x70, 0x65, 0}; // type
|
||||
static const UChar C_TOASCII[] = {0x74, 0x6F, 0x61, 0x73, 0x63, 0x69, 0x69, 0}; // toascii
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/***********************************************************************
|
||||
* COPYRIGHT:
|
||||
* Copyright (c) 1997-2012, International Business Machines Corporation
|
||||
* Copyright (c) 1997-2014, International Business Machines Corporation
|
||||
* and others. All Rights Reserved.
|
||||
***********************************************************************/
|
||||
|
||||
|
@ -54,9 +54,6 @@ static UnicodeString escape( const UnicodeString&src)
|
|||
// *****************************************************************************
|
||||
//--- move to CalendarTest?
|
||||
|
||||
static const double JULIAN_EPOCH = -210866760000000.;
|
||||
|
||||
|
||||
// Turn this on to dump the calendar fields
|
||||
#define U_DEBUG_DUMPCALS
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/********************************************************************
|
||||
* COPYRIGHT:
|
||||
* Copyright (c) 1997-2013, International Business Machines Corporation and
|
||||
* Copyright (c) 1997-2014, International Business Machines Corporation and
|
||||
* others. All Rights Reserved.
|
||||
********************************************************************/
|
||||
/* Modification History:
|
||||
|
@ -42,8 +42,6 @@
|
|||
#define LENGTHOF(array) (int32_t)(sizeof(array)/sizeof(array[0]))
|
||||
|
||||
static const UChar EUR[] = {69,85,82,0}; // "EUR"
|
||||
static const UChar JPY[] = {0x4A, 0x50, 0x59, 0};
|
||||
static const UChar CNY[] = {0x43, 0x4E, 0x59, 0};
|
||||
static const UChar ISO_CURRENCY_USD[] = {0x55, 0x53, 0x44, 0}; // "USD"
|
||||
|
||||
|
||||
|
@ -2631,6 +2629,8 @@ void NumberFormatTest::expectPad(DecimalFormat& fmt, const UnicodeString& pat,
|
|||
// This test is flaky b/c the symbols for CNY and JPY are equivalent in this locale - FIXME
|
||||
void NumberFormatTest::TestCompatibleCurrencies() {
|
||||
/*
|
||||
static const UChar JPY[] = {0x4A, 0x50, 0x59, 0};
|
||||
static const UChar CNY[] = {0x43, 0x4E, 0x59, 0};
|
||||
UErrorCode status = U_ZERO_ERROR;
|
||||
LocalPointer<NumberFormat> fmt(
|
||||
NumberFormat::createCurrencyInstance(Locale::getUS(), status));
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/********************************************************************
|
||||
* COPYRIGHT:
|
||||
* Copyright (c) 1997-2009, International Business Machines Corporation and
|
||||
* Copyright (c) 1997-2014, International Business Machines Corporation and
|
||||
* others. All Rights Reserved.
|
||||
********************************************************************/
|
||||
|
||||
|
@ -21,7 +21,6 @@
|
|||
|
||||
static const UChar kErrorUChars[] = { 0x45, 0x52, 0x52, 0x4f, 0x52, 0 };
|
||||
static const int32_t kErrorLength = 5;
|
||||
static const int32_t kERROR_COUNT = -1234567;
|
||||
|
||||
//***************************************************************************************
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/********************************************************************
|
||||
* Copyright (c) 1997-2009, International Business Machines
|
||||
* Copyright (c) 1997-2014, International Business Machines
|
||||
* Corporation and others. All Rights Reserved.
|
||||
********************************************************************/
|
||||
|
||||
|
@ -1030,7 +1030,7 @@ NewResourceBundleTest::TestNewTypes() {
|
|||
ResourceBundle bundle(testdatapath, Locale("te_IN"),status);
|
||||
|
||||
UnicodeString emptyStr = theBundle.getStringEx("emptystring", status);
|
||||
if(!emptyStr.length()==0) {
|
||||
if(emptyStr.length() != 0) {
|
||||
logln("Empty string returned invalid value\n");
|
||||
}
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
*******************************************************************************
|
||||
*
|
||||
* Copyright (C) 2003-2012, International Business Machines
|
||||
* Copyright (C) 2003-2014, International Business Machines
|
||||
* Corporation and others. All Rights Reserved.
|
||||
*
|
||||
*******************************************************************************
|
||||
|
@ -1312,7 +1312,7 @@ void TestIDNA::TestChaining(){
|
|||
|
||||
static const int loopCount = 100;
|
||||
static const int maxCharCount = 20;
|
||||
static const int maxCodePoint = 0x10ffff;
|
||||
|
||||
static uint32_t
|
||||
randul()
|
||||
{
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
**********************************************************************
|
||||
* Copyright (C) 1999-2013, International Business Machines
|
||||
* Copyright (C) 1999-2014, International Business Machines
|
||||
* Corporation and others. All Rights Reserved.
|
||||
**********************************************************************
|
||||
* Date Name Description
|
||||
|
@ -198,7 +198,6 @@ TransliteratorTest::runIndexedTest(int32_t index, UBool exec,
|
|||
}
|
||||
}
|
||||
|
||||
static const UVersionInfo ICU_39 = {3,9,4,0};
|
||||
/**
|
||||
* Make sure every system transliterator can be instantiated.
|
||||
*
|
||||
|
@ -4283,7 +4282,6 @@ static const char* BEGIN_END_RULES[] = {
|
|||
"::Upper(Lower);"
|
||||
"::([XYZ]);"
|
||||
};
|
||||
static const int32_t BEGIN_END_RULES_length = (int32_t)(sizeof(BEGIN_END_RULES) / sizeof(BEGIN_END_RULES[0]));
|
||||
|
||||
/*
|
||||
(This entire test is commented out below and will need some heavy revision when we re-add
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/********************************************************************
|
||||
* COPYRIGHT:
|
||||
* Copyright (c) 1999-2013, International Business Machines Corporation and
|
||||
* Copyright (c) 1999-2014, International Business Machines Corporation and
|
||||
* others. All Rights Reserved.
|
||||
********************************************************************/
|
||||
|
||||
|
@ -629,7 +629,6 @@ UnicodeString showDifference(const UnicodeString& expected, const UnicodeString&
|
|||
|
||||
const int kFormatThreadIterations = 100; // # of iterations per thread
|
||||
const int kFormatThreadThreads = 10; // # of threads to spawn
|
||||
const int kFormatThreadPatience = 60; // time in seconds to wait for all threads
|
||||
|
||||
#if !UCONFIG_NO_FORMATTING
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
*******************************************************************************
|
||||
* Copyright (C) 2007-2012, International Business Machines Corporation and *
|
||||
* Copyright (C) 2007-2014, International Business Machines Corporation and *
|
||||
* others. All Rights Reserved. *
|
||||
*******************************************************************************
|
||||
*/
|
||||
|
@ -30,8 +30,6 @@
|
|||
#define CASE(id,test) case id: name = #test; if (exec) { logln(#test "---"); logln((UnicodeString)""); test(); } break
|
||||
#define HOUR (60*60*1000)
|
||||
|
||||
static const UVersionInfo ICU_453 = {4,5,3,0};
|
||||
|
||||
static const char *const TESTZIDS[] = {
|
||||
"AGT",
|
||||
"America/New_York",
|
||||
|
|
Loading…
Add table
Reference in a new issue