From a18a18fcafbbd39e8bb9d5ca6f5da5b7d826e177 Mon Sep 17 00:00:00 2001 From: Vito G Castellana Date: Fri, 16 Jun 2023 14:04:25 -0700 Subject: [PATCH] [#237] Missing template param in Hashmap --- include/shad/data_structures/hashmap.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/shad/data_structures/hashmap.h b/include/shad/data_structures/hashmap.h index aa24126b..b1cd6243 100644 --- a/include/shad/data_structures/hashmap.h +++ b/include/shad/data_structures/hashmap.h @@ -228,8 +228,9 @@ class Hashmap : public AbstractDataStructure< rt::executeOnAll(clearLambda, oid_); } - using LookupResult = - typename LocalHashmap::LookupResult; + using LookupResult = typename LocalHashmap::LookupResult; /// @brief Get the value associated to a key. /// @param[in] key the key.