diff --git a/src/corelib/tools/qtools_p.h b/src/corelib/tools/qtools_p.h index 3f6b2d8b5a5..8969030b163 100644 --- a/src/corelib/tools/qtools_p.h +++ b/src/corelib/tools/qtools_p.h @@ -31,7 +31,7 @@ constexpr inline char toHexLower(uint value) noexcept return "0123456789abcdef"[value & 0xF]; } -[[nodiscard]] constexpr inline int isHexDigit(char32_t c) noexcept +[[nodiscard]] constexpr inline bool isHexDigit(char32_t c) noexcept { return (c >= '0' && c <= '9') || (c >= 'A' && c <= 'F') @@ -51,7 +51,7 @@ constexpr inline char toOct(uint value) noexcept return char('0' + (value & 0x7)); } -[[nodiscard]] constexpr inline int isOctalDigit(char32_t c) noexcept +[[nodiscard]] constexpr inline bool isOctalDigit(char32_t c) noexcept { return c >= '0' && c <= '7'; }