diff options
Diffstat (limited to 'asl/hashing/hash.hpp')
-rw-r--r-- | asl/hashing/hash.hpp | 2 |
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}; |