43c43
< void add(int64 value);
---
> void add(int64_t value);
54c54
< int64 getTotal() const { return m_sumSamples; }
---
> int64_t getTotal() const { return m_sumSamples; }
57c57
< int64 getMax() const { return m_max; }
---
> int64_t getMax() const { return m_max; }
65c65
< int64 m_max; // the maximum value seen so far
---
> int64_t m_max; // the maximum value seen so far
70c70
< int64 m_sumSamples; // the sum of all samples
---
> int64_t m_sumSamples; // the sum of all samples