Use uint64_t for AtomicCounter

This commit is contained in:
Jack Grigg 2016-11-02 14:50:00 -05:00
parent 73a439185d
commit 3bddaf632e
No known key found for this signature in database
GPG Key ID: 6A6914DAFBEA00DA
1 changed files with 1 additions and 1 deletions

View File

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