Chromium Code Reviews| Index: lib/byte_array.cc |
| =================================================================== |
| --- lib/byte_array.cc (revision 17436) |
| +++ lib/byte_array.cc (working copy) |
| @@ -118,8 +118,7 @@ |
| #define INTEGER_TO_UINT64(integer, uint64) \ |
| if (integer.IsBigint()) { \ |
| - Bigint& bigint = Bigint::Handle(); \ |
| - bigint |= integer.raw(); \ |
| + const Bigint& bigint = Bigint::Cast(integer); \ |
| ASSERT(BigintOperations::FitsIntoUint64(bigint)); \ |
| value = BigintOperations::AbsToUint64(bigint); \ |
| } else { \ |