1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 17:27:34 +00:00

AK: Resolve clang-tidy readability-bool-conversion warnings

... In files included by Kernel/Process.cpp and Kernel/Thread.cpp
This commit is contained in:
Andrew Kaster 2021-11-06 14:12:16 -06:00 committed by Andreas Kling
parent 10d0cac73c
commit 22feb9d47b
12 changed files with 26 additions and 25 deletions

View file

@ -520,7 +520,7 @@ public:
ErrorOr<void> try_append(StorageType const* values, size_t count)
{
if (!count)
if (count == 0)
return {};
TRY(try_grow_capacity(size() + count));
TypedTransfer<StorageType>::copy(slot(m_size), values, count);
@ -569,7 +569,7 @@ public:
ErrorOr<void> try_prepend(StorageType const* values, size_t count)
{
if (!count)
if (count == 0)
return {};
TRY(try_grow_capacity(size() + count));
TypedTransfer<StorageType>::move(slot(count), slot(0), m_size);
@ -645,7 +645,7 @@ public:
if (new_size == size())
return;
if (!new_size) {
if (new_size == 0) {
if (keep_capacity)
clear_with_capacity();
else