summaryrefslogtreecommitdiff
path: root/src/utils/cpp/verify_hash.hpp
diff options
context:
space:
mode:
authorMaksim Denisov <denisov.maksim@huawei.com>2024-08-05 12:40:04 +0200
committerMaksim Denisov <denisov.maksim@huawei.com>2024-08-07 14:43:19 +0200
commited6f31f4c9939d6cc8d4d317d561a94545750b0b (patch)
tree122e2a01c4a56b0fc25d94236d459101ffb80f65 /src/utils/cpp/verify_hash.hpp
parent4989605b096701fee6f1049bdad0827f81d9fb00 (diff)
downloadjustbuild-ed6f31f4c9939d6cc8d4d317d561a94545750b0b.tar.gz
Replace classic C boolean operators with keywords
! => not; && => and, || => or
Diffstat (limited to 'src/utils/cpp/verify_hash.hpp')
-rw-r--r--src/utils/cpp/verify_hash.hpp2
1 files changed, 1 insertions, 1 deletions
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<std::string> {
- 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);