From ed6f31f4c9939d6cc8d4d317d561a94545750b0b Mon Sep 17 00:00:00 2001 From: Maksim Denisov Date: Mon, 5 Aug 2024 12:40:04 +0200 Subject: Replace classic C boolean operators with keywords ! => not; && => and, || => or --- src/utils/cpp/type_safe_arithmetic.hpp | 2 +- src/utils/cpp/verify_hash.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/utils') diff --git a/src/utils/cpp/type_safe_arithmetic.hpp b/src/utils/cpp/type_safe_arithmetic.hpp index 090c266b..373f76fc 100644 --- a/src/utils/cpp/type_safe_arithmetic.hpp +++ b/src/utils/cpp/type_safe_arithmetic.hpp @@ -87,7 +87,7 @@ class type_safe_arithmetic { constexpr auto get() const -> value_t { return m_value; } constexpr void set(value_t value) { - Expects(value >= min_value && value <= max_value && + Expects(value >= min_value and value <= max_value and "value output of range"); m_value = value; } diff --git a/src/utils/cpp/verify_hash.hpp b/src/utils/cpp/verify_hash.hpp index e827680d..f105eb2b 100644 --- a/src/utils/cpp/verify_hash.hpp +++ b/src/utils/cpp/verify_hash.hpp @@ -27,7 +27,7 @@ /// \returns Nullopt on success, error message on failure. [[nodiscard]] static inline auto IsAHash(std::string const& s) noexcept -> std::optional { - if (!std::all_of(s.begin(), s.end(), [](unsigned char c) { + if (not std::all_of(s.begin(), s.end(), [](unsigned char c) { return std::isxdigit(c); })) { return fmt::format("Invalid hash {}", s); -- cgit v1.2.3