Index: runtime/third_party/double-conversion/src/bignum.h |
=================================================================== |
--- runtime/third_party/double-conversion/src/bignum.h (revision 33139) |
+++ runtime/third_party/double-conversion/src/bignum.h (working copy) |
@@ -69,6 +69,10 @@ |
bool ToHexString(char* buffer, int buffer_size) const; |
+ // Returns |
+ // -1 if a < b, |
+ // 0 if a == b, and |
+ // +1 if a > b. |
static int Compare(const Bignum& a, const Bignum& b); |
static bool Equal(const Bignum& a, const Bignum& b) { |
return Compare(a, b) == 0; |