add flag to toggle tracy (disabled for now)

This commit is contained in:
2026-02-24 20:39:48 +01:00
parent d88b66c058
commit 6418fc987e
12 changed files with 130 additions and 15 deletions

View File

@ -1,6 +1,8 @@
#ifndef __TRACY_HPP_
#define __TRACY_HPP_
#ifdef TRACY
#include <cstddef>
void *operator new(std::size_t count);
@ -8,3 +10,5 @@ void operator delete(void *ptr) noexcept;
void operator delete(void *ptr, std::size_t count) noexcept;
#endif
#endif