mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 18:51:46 +00:00
81c66ad126
Sorting samples during load was a major mistake, as three different background processing threads were concurrently accessing the samples table, and it was being sorted in one of them!
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 = 7 };
|
|
enum { Patch = 13 };
|
|
}
|
|
}
|
|
|
|
#endif
|