commit | 1f555e96c953ba7fd4b3af656d3eab473d07a4a8 | [log] [tgz] |
---|---|---|
author | Chih-Hung Hsieh <[email protected]> | Mon Apr 25 15:41:05 2016 -0700 |
committer | Chih-Hung Hsieh <[email protected]> | Mon Apr 25 15:44:11 2016 -0700 |
tree | 39d6659980ca5815d0d2b1c1908a332d44bca6b4 | |
parent | 2979215dc52e3ebcc36cbcb4bc9d7db49ce35f48 [diff] [blame] |
Fix google-explicit-constructor warnings. Bug: 28341362 Change-Id: I0ce850de85e0de6a5472dd142f738856142db9ec
diff --git a/Static.cpp b/Static.cpp index cd9509f..f0613d1 100644 --- a/Static.cpp +++ b/Static.cpp
@@ -48,7 +48,7 @@ class FdTextOutput : public BufferedTextOutput { public: - FdTextOutput(int fd) : BufferedTextOutput(MULTITHREADED), mFD(fd) { } + explicit FdTextOutput(int fd) : BufferedTextOutput(MULTITHREADED), mFD(fd) { } virtual ~FdTextOutput() { }; protected: