| Index: runtime/vm/object.cc
|
| ===================================================================
|
| --- runtime/vm/object.cc (revision 40074)
|
| +++ runtime/vm/object.cc (working copy)
|
| @@ -16819,7 +16819,8 @@
|
| intptr_t pos = 0;
|
| const intptr_t kDivisor = 100000000;
|
| const intptr_t kDigits = 8;
|
| - ASSERT(pow(10.0, kDigits) == kDivisor);
|
| + // TODO(regis): Fix Windows error reported for ambiguous call to 'pow'.
|
| + // ASSERT(pow(10.0, kDigits) == kDivisor);
|
| ASSERT(kDivisor < kDigitBase);
|
| ASSERT(Smi::IsValid(kDivisor));
|
| // Allocate a copy of the digits.
|
|
|