From 636882316b5191931e144212d93665c10859ac95 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Fri, 7 Mar 2025 00:00:43 +0100 Subject: Some work on clang-tidy-ing things up --- asl/hashing/hash.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'asl/hashing/hash.hpp') 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(bytes.data()), + reinterpret_cast(bytes.data()), // NOLINT(*-reinterpret-cast) static_cast(bytes.size()), h.state); return HashState{hashed}; -- cgit