Skip to content

Commit

Permalink
[pnnl#237] Missing template param in Hashmap
Browse files Browse the repository at this point in the history
  • Loading branch information
VitoCastellana committed Jun 16, 2023
1 parent bbdf67f commit a18a18f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions include/shad/data_structures/hashmap.h
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,9 @@ class Hashmap : public AbstractDataStructure<
rt::executeOnAll(clearLambda, oid_);
}

using LookupResult =
typename LocalHashmap<KTYPE, VTYPE, KEY_COMPARE>::LookupResult;
using LookupResult = typename LocalHashmap<KTYPE, VTYPE,
KEY_COMPARE,
INSERT_POLICY>::LookupResult;

/// @brief Get the value associated to a key.
/// @param[in] key the key.
Expand Down

0 comments on commit a18a18f

Please sign in to comment.