mirror of
https://github.com/greg7mdp/parallel-hashmap.git
synced 2026-08-29 08:34:39 +08:00
fix linux build issue?
This commit is contained in:
@@ -11,6 +11,8 @@ namespace {
|
||||
|
||||
struct Entry
|
||||
{
|
||||
Entry(int k, int v=0) : key(k), value(v) {}
|
||||
|
||||
bool operator==(const Entry &o) const
|
||||
{
|
||||
return key == o.key; // not checking value
|
||||
|
||||
Reference in New Issue
Block a user