Files

15 lines
164 B
C++
Raw Permalink Normal View History

2026-07-18 14:31:15 +02:00
#ifndef __TRACYMEMORY_HPP__
#define __TRACYMEMORY_HPP__
#include <atomic>
#include <stdint.h>
namespace tracy
{
extern std::atomic<int64_t> memUsage;
}
#endif