mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-10 07:39:16 +00:00
ICU-3221 Fix linker warnings on AIX
X-SVN-Rev: 12981
This commit is contained in:
parent
c9e789d8ea
commit
d099b29421
6 changed files with 12 additions and 6 deletions
icu4c/source/test/intltest
|
@ -102,6 +102,8 @@ TransliteratorTest::TransliteratorTest()
|
|||
{
|
||||
}
|
||||
|
||||
TransliteratorTest::~TransliteratorTest() {}
|
||||
|
||||
void
|
||||
TransliteratorTest::runIndexedTest(int32_t index, UBool exec,
|
||||
const char* &name, char* /*par*/) {
|
||||
|
|
|
@ -25,7 +25,7 @@ class TransliteratorTest : public IntlTest {
|
|||
|
||||
public:
|
||||
TransliteratorTest();
|
||||
virtual ~TransliteratorTest() {}
|
||||
virtual ~TransliteratorTest();
|
||||
|
||||
private:
|
||||
void runIndexedTest(int32_t index, UBool exec, const char* &name,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/********************************************************************
|
||||
* COPYRIGHT:
|
||||
* Copyright (c) 1997-2001, International Business Machines Corporation and
|
||||
* Copyright (c) 1997-2003, International Business Machines Corporation and
|
||||
* others. All Rights Reserved.
|
||||
********************************************************************/
|
||||
|
||||
|
@ -17,6 +17,8 @@
|
|||
|
||||
const double IntlTestDateFormat::ONEYEAR = 365.25 * ONEDAY; // Approximate
|
||||
|
||||
IntlTestDateFormat::~IntlTestDateFormat() {}
|
||||
|
||||
/**
|
||||
* This test does round-trip testing (format -> parse -> format -> parse -> etc.) of
|
||||
* DateFormat.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/********************************************************************
|
||||
* COPYRIGHT:
|
||||
* Copyright (c) 1997-2001, International Business Machines Corporation and
|
||||
* Copyright (c) 1997-2003, International Business Machines Corporation and
|
||||
* others. All Rights Reserved.
|
||||
********************************************************************/
|
||||
|
||||
|
@ -74,7 +74,7 @@ private:
|
|||
DATE_TIME
|
||||
};
|
||||
public:
|
||||
virtual ~IntlTestDateFormat() {}
|
||||
virtual ~IntlTestDateFormat();
|
||||
};
|
||||
|
||||
#endif /* #if !UCONFIG_NO_FORMATTING */
|
||||
|
|
|
@ -12,6 +12,8 @@
|
|||
#include "tsnmfmt.h"
|
||||
#include <float.h>
|
||||
|
||||
IntlTestNumberFormat::~IntlTestNumberFormat() {}
|
||||
|
||||
static const char * formattableTypeName(Formattable::Type t)
|
||||
{
|
||||
switch(t) {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/********************************************************************
|
||||
* COPYRIGHT:
|
||||
* Copyright (c) 1997-2001, International Business Machines Corporation and
|
||||
* Copyright (c) 1997-2003, International Business Machines Corporation and
|
||||
* others. All Rights Reserved.
|
||||
********************************************************************/
|
||||
|
||||
|
@ -60,7 +60,7 @@ private:
|
|||
|
||||
public:
|
||||
|
||||
virtual ~IntlTestNumberFormat() {}
|
||||
virtual ~IntlTestNumberFormat();
|
||||
|
||||
/*
|
||||
* Return a random double that isn't too large.
|
||||
|
|
Loading…
Add table
Reference in a new issue