Index: runtime/vm/isolate.cc |
diff --git a/runtime/vm/isolate.cc b/runtime/vm/isolate.cc |
index 79b0bdba3f47aa5cfcd587bf5abe0fee218d9348..ce70212bbd033d77f42cea55bac3df1fb43ecccb 100644 |
--- a/runtime/vm/isolate.cc |
+++ b/runtime/vm/isolate.cc |
@@ -839,6 +839,10 @@ Isolate::Isolate(const Dart_IsolateFlags& api_flags) |
boxed_field_list_(GrowableObjectArray::null()), |
spawn_count_monitor_(new Monitor()), |
spawn_count_(0), |
+#define ISOLATE_METRIC_CONSTRUCTORS(type, variable, name, unit) \ |
+ metric_##variable##_(), |
+ ISOLATE_METRIC_LIST(ISOLATE_METRIC_CONSTRUCTORS) |
+#undef ISOLATE_METRIC_CONSTRUCTORS |
has_attempted_reload_(false), |
no_reload_scope_depth_(0), |
reload_every_n_stack_overflow_checks_(FLAG_reload_every), |