1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Store 64-bit integers in AddrStat.

This commit is contained in:
Bartosz Taudul
2021-06-20 00:08:25 +02:00
parent 4e6a1bae22
commit 52708268fe
2 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -102,8 +102,8 @@ private:
struct AddrStat
{
uint32_t local;
uint32_t ext;
uint64_t local;
uint64_t ext;
AddrStat& operator+=( const AddrStat& other )
{