commit | a51a3dd5603daf3d368b7735067e1d9eb54c4c40 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Mon Oct 17 15:19:26 2011 -0700 |
committer | Elliott Hughes <enh@google.com> | Mon Oct 17 15:28:15 2011 -0700 |
tree | 2b2acdfa4743b5f28fa2c40364d5b029ebac1ede | |
parent | 6a21982c960c8fb92ece0483c5b5b6047b0a7f77 [diff] [blame] |
Add missing 'explicit's on single-argument constructors. Change-Id: I1494df6e74ec16238971fb4346ba184eb61c37ab
diff --git a/src/compiled_method.h b/src/compiled_method.h index e228ca8..1a5c34d 100644 --- a/src/compiled_method.h +++ b/src/compiled_method.h
@@ -70,7 +70,7 @@ class CompiledInvokeStub { public: - CompiledInvokeStub(std::vector<uint8_t>& code); + explicit CompiledInvokeStub(std::vector<uint8_t>& code); ~CompiledInvokeStub(); const std::vector<uint8_t>& GetCode() const; private: