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 404a76654c
19 changed files with 236 additions and 162 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