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

Unified Diff: runtime/vm/object.cc

Issue 9536016: Implement BigintOperations::ToDecimalCString. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Cosmetic change (in comment). Created 8 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/vm/object.cc
diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
index d39e00d28ca4ed3c63c186eed755ed131ae6d27d..9ace4169060f1be13ac994f953845987142f7577 100644
--- a/runtime/vm/object.cc
+++ b/runtime/vm/object.cc
@@ -6544,9 +6544,7 @@ static uword ZoneAllocator(intptr_t size) {
const char* Bigint::ToCString() const {
- // TODO(florian): Add a BigintOperations::ToDecCString method and use that
- // here.
- return BigintOperations::ToHexCString(*this, &ZoneAllocator);
+ return BigintOperations::ToDecimalCString(*this, &ZoneAllocator);
}

Powered by Google App Engine
This is Rietveld 408576698