mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
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
|