summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVladimir Marko <vmarko@google.com>2013-12-10 10:49:31 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2013-12-10 10:49:31 +0000
commitdd668730cf052178c679119dfc932b4db354c835 (patch)
tree34e28cc2b15c2392a924dd3ade76360efcea1829
parenta401ca84807898652cbec89b4b89f99a6eea301c (diff)
parent07a3212cc1ca6cb3c21727c6b7c1f41b54e0299a (diff)
downloadandroid_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.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 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);
}