Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TracyVersion.hpp « server - github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a063b1844918f4b48760e37cf9ce9ac03c92cc06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __TRACYVERSION_HPP__
#define __TRACYVERSION_HPP__

namespace tracy
{
namespace Version
{
enum { Major = 0 };
enum { Minor = 6 };
enum { Patch = 0 };
}
}

#endif