diff options
-rw-r--r-- | include/o3tl/intcmp.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/o3tl/intcmp.hxx b/include/o3tl/intcmp.hxx index fda9d68f5ff0..1324afcdaf7d 100644 --- a/include/o3tl/intcmp.hxx +++ b/include/o3tl/intcmp.hxx @@ -34,6 +34,7 @@ using std::cmp_greater_equal; template <typename T1, typename T2> constexpr bool cmp_equal(T1 value1, T2 value2) noexcept { + // coverity[same_on_both_sides: FALSE] if constexpr (std::is_signed_v<T1> == std::is_signed_v<T2>) { return value1 == value2; |