mirror of
https://github.com/yse/easy_profiler.git
synced 2024-12-26 16:11:02 +08:00
(profiler core) revert variables order change (prevois change may affect file read/write)
This commit is contained in:
parent
bcfa8d362d
commit
13997f6187
@ -344,10 +344,11 @@ namespace profiler
|
||||
int line() const { return m_line; }
|
||||
};
|
||||
|
||||
#pragma pack(push,1)
|
||||
class PROFILER_API SerializedBlock final
|
||||
{
|
||||
char* m_data;
|
||||
uint16_t m_size;
|
||||
char* m_data;
|
||||
|
||||
public:
|
||||
|
||||
@ -363,6 +364,7 @@ namespace profiler
|
||||
const BaseBlockData * block() const;
|
||||
const char* getBlockName() const;
|
||||
};
|
||||
#pragma pack(pop)
|
||||
|
||||
struct PROFILER_API ThreadNameSetter final
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user