summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAhmad Samir <a.samirh78@gmail.com>2023-02-10 15:04:15 +0200
committerThiago Macieira <thiago.macieira@intel.com>2023-02-11 04:23:09 +0000
commit310f5e955f3a27fbcba6d30f3ad6b8f7c39c8788 (patch)
tree3e535eb8fd64be9879cc53f763c88a604e4ebd0a
parentce7b4c734b78d24b75ecb389cf799ce85d0cc3bf (diff)
QtMiscUtils: fix return type of two helpers, should be bool
Pointed out by Oswald Buddenhagen. Pick-to: 6.5 Change-Id: I3e38e0aee4555a1f37b8dbade38b6a0b3428f74c Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
-rw-r--r--src/corelib/tools/qtools_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/tools/qtools_p.h b/src/corelib/tools/qtools_p.h
index 303e626962..1423a672d6 100644
--- a/src/corelib/tools/qtools_p.h
+++ b/src/corelib/tools/qtools_p.h
@@ -31,7 +31,7 @@ constexpr inline char toHexLower(char32_t 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(char32_t 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';
}