Anton Bikineev
7abf45fe2c
LSC: Apply clang-tidy's modernize-use-bool-literals
The check finds implicit conversions of integer literals to bools:
bool b1 = 1;
bool b2 = static_cast<bool>(1);
and transforms them to:
bool b1 = true;
bool b2 = true;
Bug: chromium:1290142
Change-Id: I6819a0bd2ca84ecadae08ed9389c17d2652589f4
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/248166
Auto-Submit: Anton Bikineev <bikineev@chromium.org>
Reviewed-by: Magnus Flodman <mflodman@webrtc.org>
Commit-Queue: Anton Bikineev <bikineev@chromium.org>
Cr-Commit-Position: refs/heads/main@{#35778}
2022-01-24 20:42:01 +00:00
..
2022-01-24 11:50:20 +00:00
2022-01-24 11:50:20 +00:00
2022-01-24 11:50:20 +00:00
2021-07-22 16:41:26 +00:00
2021-11-15 21:44:59 +00:00
2022-01-24 20:42:01 +00:00
2022-01-24 20:42:01 +00:00
2020-05-26 11:01:26 +00:00
2022-01-10 13:40:24 +00:00
2017-09-15 05:02:56 +00:00
2021-06-18 11:52:58 +00:00