diff options
author | Chih-Hung Hsieh <chh@google.com> | 2018-12-20 13:37:44 -0800 |
---|---|---|
committer | Chih-hung Hsieh <chh@google.com> | 2019-01-04 17:38:13 +0000 |
commit | 1fc78e1814d6e1ad8d49e905a569d2589bbb2b8f (patch) | |
tree | aed2dad2df847dd375759f3ab6378466a9abe482 /tools/aapt2/cmd/Compile.cpp | |
parent | bd7379858523c4e06175ee6cd92b46750d05b1dd (diff) |
Fix/suppress aapt/aapt2 google-explicit-constructor warnings
* Add explicit to conversion constructors/operators
* Use NOLINT or NOLINTNEXTLINE to suppress warnings on intended converters
Bug: 28341362
Test: make with WITH_TIDY=1 DEFAULT_GLOBAL_TIDY_CHECKS=-*,google-explicit-constructor
Change-Id: Ie02101ea7c422e8add535c111a30a2f21ead0ace
Diffstat (limited to 'tools/aapt2/cmd/Compile.cpp')
-rw-r--r-- | tools/aapt2/cmd/Compile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aapt2/cmd/Compile.cpp b/tools/aapt2/cmd/Compile.cpp index 0b43c5d4a808..7144985e80dc 100644 --- a/tools/aapt2/cmd/Compile.cpp +++ b/tools/aapt2/cmd/Compile.cpp @@ -645,7 +645,7 @@ static bool CompileFile(IAaptContext* context, const CompileOptions& options, class CompileContext : public IAaptContext { public: - CompileContext(IDiagnostics* diagnostics) : diagnostics_(diagnostics) { + explicit CompileContext(IDiagnostics* diagnostics) : diagnostics_(diagnostics) { } PackageType GetPackageType() override { |