mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
ICU-535 fixed 'middle' again.
X-SVN-Rev: 2359
This commit is contained in:
parent
6e3455b550
commit
9e89664fa6
1 changed files with 6 additions and 6 deletions
|
@ -612,18 +612,18 @@ TestChoiceFormat::testValue( double val )
|
|||
return;
|
||||
}
|
||||
|
||||
double middle;
|
||||
double *middlePtr = &middle;
|
||||
*middlePtr = (val + valnext) / 2.0;
|
||||
if ((*middlePtr != val) && (*middlePtr != valnext)) {
|
||||
/* volatile so the compiler doesn't get confused.. --srl */
|
||||
volatile double middle;
|
||||
middle = (val + valnext) / 2.0;
|
||||
if ((middle != val) && (middle != valnext)) {
|
||||
errln( (UnicodeString)
|
||||
"*** TestChoiceFormat::testValue #3 WARNING: There seems to be a gap for:" + val );
|
||||
return;
|
||||
}
|
||||
|
||||
*middlePtr = (val + valprev) / 2.0;
|
||||
middle = (val + valprev) / 2.0;
|
||||
|
||||
if ((*middlePtr != val) && (*middlePtr != valprev)) {
|
||||
if ((middle != val) && (middle != valprev)) {
|
||||
errln( (UnicodeString)
|
||||
"*** TestChoiceFormat::testValue #4 WARNING: There seems to be a gap for:" + val );
|
||||
return;
|
||||
|
|
Loading…
Add table
Reference in a new issue