mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-13 03:41:48 +00:00
659907c972
This reduces various structure sizes by 2 bytes. Memory usage reduction on various traces: big 11 GB -> 10.62 GB chicken 2436 MB -> 2342 MB drl-light-big 1761 MB -> 1706 MB q3bsp-mt 6469 MB -> 6277 MB
15 lines
169 B
C++
15 lines
169 B
C++
#ifndef __TRACYVERSION_HPP__
|
|
#define __TRACYVERSION_HPP__
|
|
|
|
namespace tracy
|
|
{
|
|
namespace Version
|
|
{
|
|
enum { Major = 0 };
|
|
enum { Minor = 5 };
|
|
enum { Patch = 2 };
|
|
}
|
|
}
|
|
|
|
#endif
|