diff options
author | Vladimir Marko <vmarko@google.com> | 2013-12-10 10:49:31 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2013-12-10 10:49:31 +0000 |
commit | dd668730cf052178c679119dfc932b4db354c835 (patch) | |
tree | 34e28cc2b15c2392a924dd3ade76360efcea1829 | |
parent | a401ca84807898652cbec89b4b89f99a6eea301c (diff) | |
parent | 07a3212cc1ca6cb3c21727c6b7c1f41b54e0299a (diff) | |
download | android_art-dd668730cf052178c679119dfc932b4db354c835.tar.gz android_art-dd668730cf052178c679119dfc932b4db354c835.tar.bz2 android_art-dd668730cf052178c679119dfc932b4db354c835.zip |
Merge "Fix build (lint: explicit ctor)."
-rw-r--r-- | runtime/verifier/dex_gc_map.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/verifier/dex_gc_map.h b/runtime/verifier/dex_gc_map.h index a045a9e3a7..4570ae820e 100644 --- a/runtime/verifier/dex_gc_map.h +++ b/runtime/verifier/dex_gc_map.h @@ -38,7 +38,7 @@ enum RegisterMapFormat { // Lightweight wrapper for Dex PC to reference bit maps. class DexPcToReferenceMap { public: - DexPcToReferenceMap(const uint8_t* data) : data_(data) { + explicit DexPcToReferenceMap(const uint8_t* data) : data_(data) { CHECK(data_ != NULL); } |