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: 9fef02c13ac5805effcb3bcbb10e8e505eb86409 (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 = 7 };
enum { Patch = 15 };
}
}

#endif