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-27 19:47:09 +0300
committerBartosz Taudul <wolf@nereid.pl>2021-11-27 19:47:09 +0300
commitd8a611e9526536adfb6accf6db0b6113bb5a5a20 (patch)
tree16e30c5f861699993a6abda12958210fd57bacce /server/TracyEvent.hpp
parent687d4defc01865b8248e85809884e02412c4d0ed (diff)
Also calculate sample parents without inlines.
Diffstat (limited to 'server/TracyEvent.hpp')
-rw-r--r--server/TracyEvent.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/server/TracyEvent.hpp b/server/TracyEvent.hpp
index cb04a5ad..56c7df07 100644
--- a/server/TracyEvent.hpp
+++ b/server/TracyEvent.hpp
@@ -828,6 +828,7 @@ struct SymbolStats
{
uint32_t incl, excl;
unordered_flat_map<uint32_t, uint32_t> parents;
+ unordered_flat_map<uint32_t, uint32_t> baseParents;
};
enum { SymbolStatsSize = sizeof( SymbolStats ) };