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

Unified Diff: runtime/vm/intermediate_language.h

Issue 2738733002: VM: Fix build on GCC which requires explicit initialization of the base class (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/intermediate_language.h
diff --git a/runtime/vm/intermediate_language.h b/runtime/vm/intermediate_language.h
index 9203787ef65f079fe65fbdb7615ce37449a2a944..65a16c6eac5bdeba6dcc949d68e309c4ca0a9e58 100644
--- a/runtime/vm/intermediate_language.h
+++ b/runtime/vm/intermediate_language.h
@@ -56,7 +56,8 @@ class CompileType : public ZoneAllocated {
: is_nullable_(is_nullable), cid_(cid), type_(type) {}
CompileType(const CompileType& other)
- : is_nullable_(other.is_nullable_),
+ : ZoneAllocated(),
+ is_nullable_(other.is_nullable_),
cid_(other.cid_),
type_(other.type_) {}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698