1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Move TracyVersion.hpp to common.

This commit is contained in:
Bartosz Taudul
2022-08-27 16:05:36 +02:00
parent 165099ca87
commit be392a76fb
9 changed files with 10 additions and 11 deletions
+14
View File
@@ -0,0 +1,14 @@
#ifndef __TRACYVERSION_HPP__
#define __TRACYVERSION_HPP__
namespace tracy
{
namespace Version
{
enum { Major = 0 };
enum { Minor = 8 };
enum { Patch = 4 };
}
}
#endif