git-subtree-dir: libs/tracy git-subtree-split: 4925f2b7240ebf4386faaae433993db6d0b3f956
15 lines
164 B
C++
15 lines
164 B
C++
#ifndef __TRACYMEMORY_HPP__
|
|
#define __TRACYMEMORY_HPP__
|
|
|
|
#include <atomic>
|
|
#include <stdint.h>
|
|
|
|
namespace tracy
|
|
{
|
|
|
|
extern std::atomic<int64_t> memUsage;
|
|
|
|
}
|
|
|
|
#endif
|