diff options
author | Brian Carlstrom <bdc@google.com> | 2013-07-17 21:31:49 -0700 |
---|---|---|
committer | Brian Carlstrom <bdc@google.com> | 2013-07-17 21:46:12 -0700 |
commit | 93ba893c20532990a430741e0a97212900094e8c (patch) | |
tree | 019990a1957562c1f573c77297df5923cce98f47 /compiler/llvm | |
parent | b1eba213afaf7fa6445de863ddc9680ab99762ea (diff) | |
download | android_art-93ba893c20532990a430741e0a97212900094e8c.tar.gz android_art-93ba893c20532990a430741e0a97212900094e8c.tar.bz2 android_art-93ba893c20532990a430741e0a97212900094e8c.zip |
Fix cpplint runtime/explicit issues
Change-Id: I352ba0b427f1ff9b22887693952b180eae0839ba
Diffstat (limited to 'compiler/llvm')
-rw-r--r-- | compiler/llvm/md_builder.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/llvm/md_builder.h b/compiler/llvm/md_builder.h index cc169a3219..65c52c937d 100644 --- a/compiler/llvm/md_builder.h +++ b/compiler/llvm/md_builder.h @@ -35,7 +35,7 @@ typedef ::llvm::MDBuilder LLVMMDBuilder; class MDBuilder : public LLVMMDBuilder { public: - MDBuilder(::llvm::LLVMContext& context) + explicit MDBuilder(::llvm::LLVMContext& context) : LLVMMDBuilder(context), tbaa_root_(createTBAARoot("Art TBAA Root")) { std::memset(tbaa_special_type_, 0, sizeof(tbaa_special_type_)); std::memset(tbaa_memory_jtype_, 0, sizeof(tbaa_memory_jtype_)); |