mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 05:25:34 +00:00
ICU-25 Fix compiler errors from egcs
X-SVN-Rev: 101
This commit is contained in:
parent
c67973faff
commit
a2114a3719
1 changed files with 4 additions and 4 deletions
|
@ -295,9 +295,9 @@ IntlTestDateFormatAPI::TestNameHiding() {
|
|||
fmt.format(numObj, str, fpos, status);
|
||||
// NumberFormat API
|
||||
fmt.format(2.71828, str);
|
||||
fmt.format(1234567L, str);
|
||||
fmt.format((int32_t)1234567, str);
|
||||
fmt.format(1.41421, str, fpos);
|
||||
fmt.format(9876543L, str, fpos);
|
||||
fmt.format((int32_t)9876543, str, fpos);
|
||||
fmt.parse(str, obj, ppos);
|
||||
fmt.parse(str, obj, status);
|
||||
}
|
||||
|
@ -312,9 +312,9 @@ IntlTestDateFormatAPI::TestNameHiding() {
|
|||
fmt.format(numObj, str, fpos, status);
|
||||
// NumberFormat API
|
||||
fmt.format(2.71828, str);
|
||||
fmt.format(1234567L, str);
|
||||
fmt.format((int32_t)1234567, str);
|
||||
fmt.format(1.41421, str, fpos);
|
||||
fmt.format(9876543L, str, fpos);
|
||||
fmt.format((int32_t)9876543, str, fpos);
|
||||
fmt.parse(str, obj, ppos);
|
||||
fmt.parse(str, obj, status);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue