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

TracyVersion.hpp « common « public - github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ac24e848364eb7ec5f521857de88b9e301535ef2 (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 = 8 };
enum { Patch = 5 };
}
}

#endif