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

Store symbol addresses.

This commit is contained in:
Bartosz Taudul
2020-02-25 23:42:59 +01:00
parent ca894be51d
commit af58649113
4 changed files with 32 additions and 4 deletions
+1 -1
View File
@@ -172,7 +172,7 @@ private:
if( lhs->size != rhs->size ) return false;
for( uint8_t i=0; i<lhs->size; i++ )
{
if( memcmp( lhs->data + i, rhs->data + i, sizeof( CallstackFrame ) ) != 0 ) return false;
if( memcmp( lhs->data + i, rhs->data + i, sizeof( CallstackFrameBasic ) ) != 0 ) return false;
}
return true;
}