summaryrefslogtreecommitdiffstats
path: root/compiler/dex/local_value_numbering.h
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2013-07-17 21:52:25 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-07-17 21:52:25 -0700
commitb267c89acd0fcda0e8e2a9eeaeeed9ee048d1abc (patch)
tree6c6cdd913669f09eff4c3aa2b820a39ed0f3a937 /compiler/dex/local_value_numbering.h
parent397f477582243bdffed603a73ff5a06ee295d7fb (diff)
parent93ba893c20532990a430741e0a97212900094e8c (diff)
downloadart-b267c89acd0fcda0e8e2a9eeaeeed9ee048d1abc.zip
art-b267c89acd0fcda0e8e2a9eeaeeed9ee048d1abc.tar.gz
art-b267c89acd0fcda0e8e2a9eeaeeed9ee048d1abc.tar.bz2
am 93ba893c: Fix cpplint runtime/explicit issues
* commit '93ba893c20532990a430741e0a97212900094e8c': Fix cpplint runtime/explicit issues
Diffstat (limited to 'compiler/dex/local_value_numbering.h')
-rw-r--r--compiler/dex/local_value_numbering.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/dex/local_value_numbering.h b/compiler/dex/local_value_numbering.h
index f2b2291..09ed7ae 100644
--- a/compiler/dex/local_value_numbering.h
+++ b/compiler/dex/local_value_numbering.h
@@ -33,7 +33,7 @@ typedef SafeMap<uint32_t, uint16_t> MemoryVersionMap;
class LocalValueNumbering {
public:
- LocalValueNumbering(CompilationUnit* cu) : cu_(cu) {};
+ explicit LocalValueNumbering(CompilationUnit* cu) : cu_(cu) {};
static uint64_t BuildKey(uint16_t op, uint16_t operand1, uint16_t operand2, uint16_t modifier) {
return (static_cast<uint64_t>(op) << 48 | static_cast<uint64_t>(operand1) << 32 |