mirror of
https://github.com/wolfpld/tracy.git
synced 2025-03-20 07:40:02 +08:00
Use short ptr for callstack frame data.
This commit is contained in:
parent
654f54d877
commit
2a28c6cc72
@ -8,6 +8,7 @@
|
||||
#include <string.h>
|
||||
|
||||
#include "TracyCharUtil.hpp"
|
||||
#include "TracyShortPtr.hpp"
|
||||
#include "TracyVector.hpp"
|
||||
#include "tracy_flat_hash_map.hpp"
|
||||
#include "../common/TracyForceInline.hpp"
|
||||
@ -288,7 +289,7 @@ enum { CallstackFrameSize = sizeof( CallstackFrame ) };
|
||||
|
||||
struct CallstackFrameData
|
||||
{
|
||||
CallstackFrame* data;
|
||||
short_ptr<CallstackFrame> data;
|
||||
uint8_t size;
|
||||
};
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user