From 4a00a6edead9f35ebc5f538cefc35c778e2dbe49 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Sun, 23 Jun 2024 11:03:50 +1000 Subject: Fix trailing whitespaces --- src/hash_map.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/hash_map.hh') diff --git a/src/hash_map.hh b/src/hash_map.hh index dcf76d42..eef082dd 100644 --- a/src/hash_map.hh +++ b/src/hash_map.hh @@ -239,7 +239,7 @@ struct HashMap constexpr bool contains(const KeyType& key) const { return find_index(key) >= 0; } template requires IsHashCompatible> - constexpr EffectiveValue& operator[](KeyType&& key) + constexpr EffectiveValue& operator[](KeyType&& key) { const auto hash = hash_value(key); auto index = find_index(key, hash); -- cgit v1.2.3