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: 6a57ee5236afb24daeb526e95db0d09a6d910ecc (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 = 1 };
}
}

#endif