mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
14 lines
167 B
C++
Executable File
14 lines
167 B
C++
Executable File
#ifndef __TRACYSYSTEM_HPP__
|
|
#define __TRACYSYSTEM_HPP__
|
|
|
|
#include <thread>
|
|
|
|
namespace tracy
|
|
{
|
|
|
|
void SetThreadName( std::thread& thread, const char* name );
|
|
|
|
}
|
|
|
|
#endif
|