mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-760 Fix for Solaris compiler error
X-SVN-Rev: 3161
This commit is contained in:
parent
759bbb96f3
commit
c346349b12
1 changed files with 5 additions and 1 deletions
|
@ -798,7 +798,11 @@ void NumberFormatTest::TestPad(void) {
|
|||
10252045600.37,"10,252,045,600.37", status);
|
||||
|
||||
// Use jitterbug 760 for checking in these fixes.
|
||||
if (strcmp(U_ICU_VERSION, "1.7") == 0) {
|
||||
// Also consider deleting the extra decimal format variables
|
||||
// or at least not newing the DecimalFormat
|
||||
UnicodeString icuVersionCurr(U_ICU_VERSION);
|
||||
UnicodeString icuVersion("1.7");
|
||||
if (icuVersionCurr == icuVersion) {
|
||||
logln("Not testing TestPad() at this time, fix in a later release");
|
||||
}
|
||||
else {
|
||||
|
|
Loading…
Add table
Reference in a new issue