mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 05:25:34 +00:00
Fix compiler errors from egcs
X-Trac-URL: https://ssl.icu-project.org/trac/ticket/25 git-svn-id: http://source.icu-project.org/repos/icu/icu/trunk@101 0a8b766c-62c9-45f9-954d-7f2943c9ead0
This commit is contained in:
parent
e52e60ec0a
commit
77607483b3
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