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

Don't alias struct names in client and server.

This commit is contained in:
Bartosz Taudul
2020-08-20 17:38:29 +02:00
parent 7cf3b0b004
commit 960c7fb1b9
2 changed files with 15 additions and 15 deletions
+3 -3
View File
@@ -22,7 +22,7 @@
namespace tracy
{
struct SymbolData
struct CallstackSymbolData
{
const char* file;
uint32_t line;
@@ -45,8 +45,8 @@ struct CallstackEntryData
const char* imageName;
};
SymbolData DecodeSymbolAddress( uint64_t ptr );
SymbolData DecodeCodeAddress( uint64_t ptr );
CallstackSymbolData DecodeSymbolAddress( uint64_t ptr );
CallstackSymbolData DecodeCodeAddress( uint64_t ptr );
const char* DecodeCallstackPtrFast( uint64_t ptr );
CallstackEntryData DecodeCallstackPtr( uint64_t ptr );
void InitCallstack();