Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
Tessil committed Sep 14, 2024
1 parent d43b623 commit 585c8f5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions include/tsl/bhopscotch_set.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class bhopscotch_set {
return key;
}
};

public:
using overflow_container_type = std::set<Key, Compare, Allocator>;
using ht = tsl::detail_hopscotch_hash::hopscotch_hash<
Key, KeySelect, void, Hash, KeyEqual, Allocator, NeighborhoodSize,
Expand All @@ -99,7 +99,6 @@ class bhopscotch_set {
using iterator = typename ht::iterator;
using const_iterator = typename ht::const_iterator;
using buckets_container_type = typename ht::buckets_container_type;
using overflow_container_type = typename ht::overflow_container_type;

/*
* Constructors
Expand Down
3 changes: 2 additions & 1 deletion include/tsl/hopscotch_set.h
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ class hopscotch_set {
}
};

public:
using overflow_container_type = std::list<Key, Allocator>;
using ht = detail_hopscotch_hash::hopscotch_hash<
Key, KeySelect, void, Hash, KeyEqual, Allocator, NeighborhoodSize,
Expand All @@ -120,7 +121,7 @@ class hopscotch_set {
using iterator = typename ht::iterator;
using const_iterator = typename ht::const_iterator;
using buckets_container_type = typename ht::buckets_container_type;
using overflow_container_type = typename ht::overflow_container_type;
// using overflow_container_type = typename ht::overflow_container_type;

/*
* Constructors
Expand Down

0 comments on commit 585c8f5

Please sign in to comment.