summaryrefslogtreecommitdiffstats
path: root/runtime/verifier/dex_gc_map.h
diff options
context:
space:
mode:
authorVladimir Marko <vmarko@google.com>2013-12-10 10:41:18 +0000
committerVladimir Marko <vmarko@google.com>2013-12-10 10:41:18 +0000
commit07a3212cc1ca6cb3c21727c6b7c1f41b54e0299a (patch)
tree34e28cc2b15c2392a924dd3ade76360efcea1829 /runtime/verifier/dex_gc_map.h
parenta401ca84807898652cbec89b4b89f99a6eea301c (diff)
downloadart-07a3212cc1ca6cb3c21727c6b7c1f41b54e0299a.zip
art-07a3212cc1ca6cb3c21727c6b7c1f41b54e0299a.tar.gz
art-07a3212cc1ca6cb3c21727c6b7c1f41b54e0299a.tar.bz2
Fix build (lint: explicit ctor).
Change-Id: Ic28c43d39dc85adce013fd795590af1050c333c9
Diffstat (limited to 'runtime/verifier/dex_gc_map.h')
-rw-r--r--runtime/verifier/dex_gc_map.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/verifier/dex_gc_map.h b/runtime/verifier/dex_gc_map.h
index a045a9e..4570ae8 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);
}