diff options
author | 2014-09-25 13:28:27 +0000 | |
---|---|---|
committer | 2014-09-25 13:28:28 +0000 | |
commit | d7e2f329ddacd2294ba94cd5acde026677d32e0d (patch) | |
tree | 3a986ce4819556a05170d8fa22a3cffc67829e39 /compiler/optimizing/nodes.h | |
parent | 034168039d28c84ae4cba60d306a8bc7b396d409 (diff) | |
parent | 5799fc0754da7ff2b50b472e05c65cd4ba32dda2 (diff) |
Merge "Optimizing compiler: remove unnecessary `explicit' keywords."
Diffstat (limited to 'compiler/optimizing/nodes.h')
-rw-r--r-- | compiler/optimizing/nodes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h index 5e2dec1623..e3b305e93c 100644 --- a/compiler/optimizing/nodes.h +++ b/compiler/optimizing/nodes.h @@ -1274,7 +1274,7 @@ class HLocal : public HTemplateInstruction<0> { // Load a given local. The local is an input of this instruction. class HLoadLocal : public HExpression<1> { public: - explicit HLoadLocal(HLocal* local, Primitive::Type type) + HLoadLocal(HLocal* local, Primitive::Type type) : HExpression(type, SideEffects::None()) { SetRawInputAt(0, local); } @@ -1592,7 +1592,7 @@ class HNullCheck : public HExpression<1> { class FieldInfo : public ValueObject { public: - explicit FieldInfo(MemberOffset field_offset, Primitive::Type field_type) + FieldInfo(MemberOffset field_offset, Primitive::Type field_type) : field_offset_(field_offset), field_type_(field_type) {} MemberOffset GetFieldOffset() const { return field_offset_; } |