Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-10-12 23:23:06 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-10-12 23:23:06 +0300
commit4416dff34200c201781ba1095d37277b11a8ef54 (patch)
tree8ac6dfe49ed70440066d6ef5222182ea2314ae41 /public
parentf64fb95a773e9237192edaa26b15c8df38d2ee22 (diff)
Increase extra data in SymbolQueueItem to 64 bit.
Diffstat (limited to 'public')
-rw-r--r--public/client/TracyProfiler.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/public/client/TracyProfiler.hpp b/public/client/TracyProfiler.hpp
index 9992962b..27dbbd93 100644
--- a/public/client/TracyProfiler.hpp
+++ b/public/client/TracyProfiler.hpp
@@ -175,7 +175,7 @@ class Profiler
{
SymbolQueueItemType type;
uint64_t ptr;
- uint32_t extra;
+ uint64_t extra;
};
public: