commit | 1d7e5f19c1ebdf41d95549855d1a3b3ecdd60479 | [log] [tgz] |
---|---|---|
author | Chih-Hung Hsieh <chh@google.com> | Mon Apr 25 13:49:46 2016 -0700 |
committer | Chih-Hung Hsieh <chh@google.com> | Mon Apr 25 13:49:46 2016 -0700 |
tree | dfa25867ebf3952f6a3a99986c59c0bdb2e16bec | |
parent | 6c75f2f223b2d3e3d3faf75f6750b27aeaca66b1 [diff] |
Fix google-explicit-constructor warnings. Bug: 28341362 Change-Id: I2cf746fd07addc6e6c22e98e2a5bb8a8ce47c885
diff --git a/logcat/tests/logcat_benchmark.cpp b/logcat/tests/logcat_benchmark.cpp index be815be..dd85164 100644 --- a/logcat/tests/logcat_benchmark.cpp +++ b/logcat/tests/logcat_benchmark.cpp
@@ -49,7 +49,7 @@ } } - timestamp(const char *buffer) + explicit timestamp(const char *buffer) { init(buffer); }
diff --git a/logd/LogBuffer.cpp b/logd/LogBuffer.cpp index 8c30f79..db65978 100644 --- a/logd/LogBuffer.cpp +++ b/logd/LogBuffer.cpp
@@ -380,7 +380,7 @@ tid(tid), padding(0) { } - LogBufferElementKey(uint64_t key):value(key) { } + explicit LogBufferElementKey(uint64_t key):value(key) { } uint64_t getKey() { return value; } };