Browse Source

Use uint64_t for AtomicCounter

pull/4/head
Jack Grigg 8 years ago
parent
commit
3bddaf632e
No known key found for this signature in database GPG Key ID: 6A6914DAFBEA00DA
  1. 2
      src/metrics.h

2
src/metrics.h

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

Loading…
Cancel
Save