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

Unified Diff: runtime/vm/bigint_operations_test.cc

Issue 11028145: Changed StackZone and ApiZone to be containers for Zone. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Added assertion for ApiZone linking. Created 8 years, 2 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/bigint_operations_test.cc
diff --git a/runtime/vm/bigint_operations_test.cc b/runtime/vm/bigint_operations_test.cc
index 94ef1a3cf5de9875001044c4f2f5fca1f4abf664..0c141a169549cdad71bee3d30be27b7bbc95bfa1 100644
--- a/runtime/vm/bigint_operations_test.cc
+++ b/runtime/vm/bigint_operations_test.cc
@@ -11,7 +11,7 @@
namespace dart {
static uword ZoneAllocator(intptr_t size) {
- StackZone* zone = Isolate::Current()->current_zone();
+ Zone* zone = Isolate::Current()->current_zone();
return zone->AllocUnsafe(size);
}

Powered by Google App Engine
This is Rietveld 408576698