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

Filename in callstack frame is not a persistent pointer.

This commit is contained in:
Bartosz Taudul
2018-06-20 01:26:05 +02:00
parent 56479b86fa
commit 88b1955a5a
4 changed files with 19 additions and 8 deletions
+1 -1
View File
@@ -161,8 +161,8 @@ static_assert( std::is_standard_layout<MemEvent>::value, "MemEvent is not standa
struct CallstackFrame
{
uint64_t file;
StringIdx name;
StringIdx file;
uint32_t line;
};