Skip to content

Commit

Permalink
[#204] Fixed a typo in Multimap.h
Browse files Browse the repository at this point in the history
  • Loading branch information
VitoCastellana committed Sep 27, 2022
1 parent f2b3508 commit 3c71d46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/shad/data_structures/multimap.h
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ class Multimap : public AbstractDataStructure< Multimap<KTYPE, VTYPE, KEY_COMPAR
/// @brief Asynchronously remove duplicate elements from each value.
/// The routine first sorts the value and then removes duplicates.
/// @param[in,out] handle Reference to the handle.
inline void AsyncUnique(rt::Handle &handle,) {
inline void AsyncUnique(rt::Handle &handle) {
auto uniqueLambda = [](rt::Handle &, const KTYPE & key,
std::vector<VTYPE> & value, ObjectID & oid) {
auto mapPtr = HmapT::GetPtr(oid);
Expand Down

0 comments on commit 3c71d46

Please sign in to comment.