Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Unified Diff: runtime/third_party/double-conversion/src/cached-powers.cc

Issue 184153002: - Update runtime/third_party/double-conversion to version 1.1.5. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/third_party/double-conversion/src/cached-powers.cc
===================================================================
--- runtime/third_party/double-conversion/src/cached-powers.cc (revision 33139)
+++ runtime/third_party/double-conversion/src/cached-powers.cc (working copy)
@@ -152,6 +152,7 @@
ASSERT(0 <= index && index < kCachedPowersLength);
CachedPower cached_power = kCachedPowers[index];
ASSERT(min_exponent <= cached_power.binary_exponent);
+ (void) max_exponent; // Mark variable as used.
ASSERT(cached_power.binary_exponent <= max_exponent);
*decimal_exponent = cached_power.decimal_exponent;
*power = DiyFp(cached_power.significand, cached_power.binary_exponent);
« no previous file with comments | « runtime/third_party/double-conversion/src/bignum-dtoa.cc ('k') | runtime/third_party/double-conversion/src/double.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698