Index: runtime/vm/symbols.cc |
diff --git a/runtime/vm/symbols.cc b/runtime/vm/symbols.cc |
index 325f7d3ae5cac6c81e022d4163ee29c560145c08..bfb2bea7543f4816c5ab0fc32c553ab558ab57ca 100644 |
--- a/runtime/vm/symbols.cc |
+++ b/runtime/vm/symbols.cc |
@@ -96,7 +96,7 @@ void Symbols::Add(const Array& symbol_table, const String& str) { |
RawString* Symbols::New(const char* str) { |
intptr_t width = 0; |
intptr_t len = Utf8::CodePointCount(str, &width); |
- StackZone* zone = Isolate::Current()->current_zone(); |
+ Zone* zone = Isolate::Current()->current_zone(); |
if (len == 0) { |
return Symbols::New(reinterpret_cast<uint8_t*>(NULL), 0); |
} else if (width == 1) { |