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

Don't retrieve symbol name for address.

This commit is contained in:
Bartosz Taudul
2020-02-27 12:58:01 +01:00
parent be5793987e
commit 2df6f9068a
3 changed files with 10 additions and 104 deletions
+4 -2
View File
@@ -24,13 +24,15 @@ namespace tracy
struct SymbolData
{
const char* name;
const char* file;
uint32_t line;
};
struct CallstackEntry : public SymbolData
struct CallstackEntry
{
const char* name;
const char* file;
uint32_t line;
uint64_t symAddr;
};