Skip to content

Commit

Permalink
[#238] Fixed the type of local storage in replicated hashmap
Browse files Browse the repository at this point in the history
  • Loading branch information
VitoCastellana committed Dec 8, 2023
1 parent c0bc929 commit 4c82c60
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions include/shad/data_structures/replicated_hashmap.h
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
//===------------------------------------------------------------*- C++ -*-===//
//
// The AGILE Workflows
//
//===----------------------------------------------------------------------===//
// ** Pre-Copyright Notice
//
// This computer software was prepared by Battelle Memorial Institute,
//===------------------------------------------------------------*- C++ -*-===//
//
// SHAD
//
// The Scalable High-performance Algorithms and Data Structure Library
Expand Down Expand Up @@ -156,7 +148,7 @@ class Replicated_Hashmap : public shad::AbstractDataStructure<
friend class shad::AbstractDataStructure;

ObjectID oid_;
shad::LocalHashmap<KTYPE, VTYPE> localMap_;
shad::LocalHashmap<KTYPE, VTYPE, KEY_COMPARE, INSERT_POLICY> localMap_;

struct InsertArgs {
ObjectID oid;
Expand Down

0 comments on commit 4c82c60

Please sign in to comment.