tracy/server/TracyMemory.hpp

15 lines
164 B
C++
Raw Normal View History

2017-09-16 23:22:46 +00:00
#ifndef __TRACYMEMORY_HPP__
#define __TRACYMEMORY_HPP__
2024-05-04 12:28:55 +00:00
#include <atomic>
#include <stdint.h>
2017-09-16 23:22:46 +00:00
namespace tracy
{
2024-05-04 12:28:55 +00:00
extern std::atomic<int64_t> memUsage;
2017-09-16 23:22:46 +00:00
}
#endif