mirror of
https://github.com/greg7mdp/parallel-hashmap.git
synced 2026-08-30 09:00:38 +08:00
Revert "fix warning in example program"
This reverts commit 5c54670519.
This commit is contained in:
@@ -68,7 +68,7 @@ public:
|
||||
}
|
||||
|
||||
std::array<uint64_t, 4> state() const {
|
||||
return std::array<uint64_t, 4>({m_a, m_b, m_c, m_counter});
|
||||
return {m_a, m_b, m_c, m_counter};
|
||||
}
|
||||
|
||||
void state(std::array<uint64_t, 4> const& s) {
|
||||
|
||||
Reference in New Issue
Block a user