Commit a3c403f1 by Dmitri Gribenko Committed by Copybara-Service

Fix ClangTidy warnings

* converting integer literal to bool, use bool literal instead
* use '= default' to define a trivial default constructor

PiperOrigin-RevId: 554935854
Change-Id: If16a435664641df049b8810044b34a05ea2b4028
parent 49146ec1
...@@ -179,7 +179,7 @@ TEST(StrReplaceAll, ReplacementsInPlaceInMap) { ...@@ -179,7 +179,7 @@ TEST(StrReplaceAll, ReplacementsInPlaceInMap) {
} }
struct Cont { struct Cont {
Cont() {} Cont() = default;
explicit Cont(absl::string_view src) : data(src) {} explicit Cont(absl::string_view src) : data(src) {}
absl::string_view data; absl::string_view data;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment