mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
15 lines
163 B
C++
Executable File
15 lines
163 B
C++
Executable File
#ifndef __TRACYMEMORY_HPP__
|
|
#define __TRACYMEMORY_HPP__
|
|
|
|
#include <atomic>
|
|
#include <stdlib.h>
|
|
|
|
namespace tracy
|
|
{
|
|
|
|
extern std::atomic<size_t> memUsage;
|
|
|
|
}
|
|
|
|
#endif
|