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

Unified Diff: runtime/third_party/double-conversion/src/bignum.h

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/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;
« no previous file with comments | « runtime/third_party/double-conversion/README.dart ('k') | runtime/third_party/double-conversion/src/bignum.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698