update compiler flags, fix tracy allocation profiling, fix compiler warnings

This commit is contained in:
2026-02-23 22:25:34 +01:00
parent 59a4303d62
commit 935a7569d3
19 changed files with 209 additions and 149 deletions

10
include/tracy.hpp Normal file
View File

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