diff options
author | 2016-04-25 15:41:05 -0700 | |
---|---|---|
committer | 2016-04-25 15:44:11 -0700 | |
commit | e2347b7953f70232541bdc1b392230d6231aaeb9 (patch) | |
tree | 1d73a0ad214dcbcdf8bae3d1dc1eebb83985575b /libs/binder/Static.cpp | |
parent | 33dcaf9b52649785bff0c56b48f84a8218354888 (diff) |
Fix google-explicit-constructor warnings.
Bug: 28341362
Change-Id: I0ce850de85e0de6a5472dd142f738856142db9ec
Diffstat (limited to 'libs/binder/Static.cpp')
-rw-r--r-- | libs/binder/Static.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/Static.cpp b/libs/binder/Static.cpp index cd9509f707..f0613d1631 100644 --- a/libs/binder/Static.cpp +++ b/libs/binder/Static.cpp @@ -48,7 +48,7 @@ protected: class FdTextOutput : public BufferedTextOutput { public: - FdTextOutput(int fd) : BufferedTextOutput(MULTITHREADED), mFD(fd) { } + explicit FdTextOutput(int fd) : BufferedTextOutput(MULTITHREADED), mFD(fd) { } virtual ~FdTextOutput() { }; protected: |