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

Move TracySystem to a common directory.

This commit is contained in:
Bartosz Taudul
2017-09-13 01:31:55 +02:00
parent 997f0c64c3
commit 45646c4f45
3 changed files with 1 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
#ifndef __TRACYSYSTEM_HPP__
#define __TRACYSYSTEM_HPP__
#include <thread>
namespace tracy
{
void SetThreadName( std::thread& thread, const char* name );
}
#endif