mirror of
https://github.com/wolfpld/tracy
synced 2026-01-19 04:52:09 +00:00
Note this does not change `sizeof(MessageData)` as there were 5 bytes left due to alignment. (now 3)
15 lines
170 B
C++
15 lines
170 B
C++
#ifndef __TRACYVERSION_HPP__
|
|
#define __TRACYVERSION_HPP__
|
|
|
|
namespace tracy
|
|
{
|
|
namespace Version
|
|
{
|
|
enum { Major = 0 };
|
|
enum { Minor = 13 };
|
|
enum { Patch = 2 };
|
|
}
|
|
}
|
|
|
|
#endif
|