mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-15 01:42:37 +00:00
ICU-900 fix VS warnings
X-SVN-Rev: 8174
This commit is contained in:
parent
2113c6d505
commit
aebdf524d1
1 changed files with 2 additions and 2 deletions
|
@ -1861,9 +1861,9 @@ void CalendarRegressionTest::TestJ81() {
|
|||
status = U_ZERO_ERROR;
|
||||
int32_t amount = DATA[i].amount * (sign==MINUS?-1:1);
|
||||
UDate date = cutover +
|
||||
(sign==PLUS>0 ? DATA[i].before : DATA[i].after);
|
||||
(sign==PLUS ? DATA[i].before : DATA[i].after);
|
||||
UDate expected = cutover +
|
||||
(sign==PLUS>0 ? DATA[i].after : DATA[i].before);
|
||||
(sign==PLUS ? DATA[i].after : DATA[i].before);
|
||||
cal.setTime(date, status);
|
||||
if (U_FAILURE(status)) {
|
||||
errln((UnicodeString)"FAIL: setTime returned error code " + u_errorName(status));
|
||||
|
|
Loading…
Add table
Reference in a new issue