Index: runtime/vm/growable_array.h |
=================================================================== |
--- runtime/vm/growable_array.h (revision 36483) |
+++ runtime/vm/growable_array.h (working copy) |
@@ -135,6 +135,9 @@ |
template<typename T> |
class ZoneGrowableArray : public BaseGrowableArray<T, ZoneAllocated> { |
public: |
+ ZoneGrowableArray(Isolate* isolate, intptr_t initial_capacity) |
+ : BaseGrowableArray<T, ZoneAllocated>( |
+ initial_capacity, isolate->current_zone()) {} |
explicit ZoneGrowableArray(intptr_t initial_capacity) |
: BaseGrowableArray<T, ZoneAllocated>( |
initial_capacity, |