Use uint64_t for AtomicCounter

This commit is contained in:
Jack Grigg
2016-11-02 14:50:00 -05:00
parent 73a439185d
commit 3bddaf632e

View File

@@ -8,7 +8,7 @@
#include <string>
struct AtomicCounter {
std::atomic<int> value;
std::atomic<uint64_t> value;
AtomicCounter() : value {0} { }