[clang-tidy] simplify boolean expressions

Found with readability-simplify-boolean-expr

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev 2020-01-31 21:25:24 -08:00
parent bc6eca2115
commit afb29942b0
No known key found for this signature in database
GPG Key ID: 36D31CFA845F0E3B
3 changed files with 3 additions and 9 deletions

View File

@ -283,7 +283,7 @@ static void help(void)
"Options:\n");
for (const auto &i : option_defs)
if(i.HasDescription() == true) // hide hidden options from help print
if(i.HasDescription()) // hide hidden options from help print
PrintOption(i);
exit(EXIT_SUCCESS);

View File

@ -863,10 +863,7 @@ IsFilterSupported(const ISongFilter &f) noexcept
return true;
const auto tag = Convert(t->GetTagType());
if (tag == MPD_TAG_COUNT)
return false;
return true;
return tag != MPD_TAG_COUNT;
} else if (auto u = dynamic_cast<const UriSongFilter *>(&f)) {
if (u->IsNegated())
// TODO implement

View File

@ -102,10 +102,7 @@ FullyBufferedSocket::OnSocketReady(unsigned flags) noexcept
return false;
}
if (!BufferedSocket::OnSocketReady(flags))
return false;
return true;
return BufferedSocket::OnSocketReady(flags);
}
void