1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:07:35 +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

@ -52,7 +52,7 @@ public:
explicit StringView(String&&) = delete;
explicit StringView(FlyString&&) = delete;
[[nodiscard]] constexpr bool is_null() const { return !m_characters; }
[[nodiscard]] constexpr bool is_null() const { return m_characters == nullptr; }
[[nodiscard]] constexpr bool is_empty() const { return m_length == 0; }
[[nodiscard]] constexpr char const* characters_without_null_termination() const { return m_characters; }
@ -151,18 +151,18 @@ public:
constexpr bool operator==(const char* cstring) const
{
if (is_null())
return !cstring;
return cstring == nullptr;
if (!cstring)
return false;
// NOTE: `m_characters` is not guaranteed to be null-terminated, but `cstring` is.
const char* cp = cstring;
for (size_t i = 0; i < m_length; ++i) {
if (!*cp)
if (*cp == '\0')
return false;
if (m_characters[i] != *(cp++))
return false;
}
return !*cp;
return *cp == '\0';
}
constexpr bool operator!=(const char* cstring) const
@ -180,7 +180,7 @@ public:
return false;
if (length() != other.length())
return false;
return !__builtin_memcmp(m_characters, other.m_characters, m_length);
return __builtin_memcmp(m_characters, other.m_characters, m_length) == 0;
}
constexpr bool operator!=(StringView other) const