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
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2021-11-13 23:26:28 +0300
committerBartosz Taudul <wolf@nereid.pl>2021-11-13 23:26:28 +0300
commita2547ccf1d079a9b0a66e0270dcf2838c6bf16ea (patch)
treebb3812915edda40bd637da6095bc34983930f599 /server/TracyEvent.hpp
parentc2e9b602be9e5977386507c4371ed6564249145d (diff)
Rename CallstackFrameTree -> MemCallstackFrameTree.
Diffstat (limited to 'server/TracyEvent.hpp')
-rw-r--r--server/TracyEvent.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/server/TracyEvent.hpp b/server/TracyEvent.hpp
index abca931c..4d1330b9 100644
--- a/server/TracyEvent.hpp
+++ b/server/TracyEvent.hpp
@@ -457,18 +457,18 @@ struct CallstackFrameData
enum { CallstackFrameDataSize = sizeof( CallstackFrameData ) };
-struct CallstackFrameTree
+struct MemCallstackFrameTree
{
- CallstackFrameTree( CallstackFrameId id ) : frame( id ), alloc( 0 ), count( 0 ) {}
+ MemCallstackFrameTree( CallstackFrameId id ) : frame( id ), alloc( 0 ), count( 0 ) {}
CallstackFrameId frame;
uint64_t alloc;
uint32_t count;
- unordered_flat_map<uint64_t, CallstackFrameTree> children;
+ unordered_flat_map<uint64_t, MemCallstackFrameTree> children;
unordered_flat_set<uint32_t> callstacks;
};
-enum { CallstackFrameTreeSize = sizeof( CallstackFrameTree ) };
+enum { MemCallstackFrameTreeSize = sizeof( MemCallstackFrameTree ) };
struct CrashEvent