commit | 3887c468d731420e929e6ad3acf190d5431e94fc | [log] [tgz] |
---|---|---|
author | Roland Levillain <rpl@google.com> | Wed Aug 12 18:15:42 2015 +0100 |
committer | Roland Levillain <rpl@google.com> | Wed Aug 12 18:15:42 2015 +0100 |
tree | 67dacb849e722e33e118b97714a48e467c06cbd5 | |
parent | 6a5037eb3340e4c981fd7de3ff45167ee5b7fc82 [diff] [blame] |
Remove unnecessary `explicit` qualifiers on constructors. Change-Id: Id12e392ad50f66a6e2251a68662b7959315dc567
diff --git a/runtime/base/arena_allocator.h b/runtime/base/arena_allocator.h index c4b36ee..05c66f0 100644 --- a/runtime/base/arena_allocator.h +++ b/runtime/base/arena_allocator.h
@@ -170,7 +170,7 @@ class MemMapArena FINAL : public Arena { public: - explicit MemMapArena(size_t size, bool low_4gb); + MemMapArena(size_t size, bool low_4gb); virtual ~MemMapArena(); void Release() OVERRIDE;