summaryrefslogtreecommitdiff
path: root/asl/hashing/hash.hpp
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2025-03-07 00:00:43 +0100
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2025-03-07 00:00:43 +0100
commit636882316b5191931e144212d93665c10859ac95 (patch)
tree740f76daceee5bff223b790a4eb91f4e59c5be61 /asl/hashing/hash.hpp
parentf0cccbe3285c039553e1fd8b5a5c7830d6087974 (diff)
Some work on clang-tidy-ing things up
Diffstat (limited to 'asl/hashing/hash.hpp')
-rw-r--r--asl/hashing/hash.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/asl/hashing/hash.hpp b/asl/hashing/hash.hpp
index 443a774..f8987df 100644
--- a/asl/hashing/hash.hpp
+++ b/asl/hashing/hash.hpp
@@ -80,7 +80,7 @@ struct HashState
{
auto bytes = as_bytes(s);
auto hashed = city_hash::CityHash128WithSeed(
- reinterpret_cast<const char*>(bytes.data()),
+ reinterpret_cast<const char*>(bytes.data()), // NOLINT(*-reinterpret-cast)
static_cast<size_t>(bytes.size()),
h.state);
return HashState{hashed};