update compiler flags, fix tracy allocation profiling, fix compiler warnings
This commit is contained in:
10
include/tracy.hpp
Normal file
10
include/tracy.hpp
Normal 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
|
||||
Reference in New Issue
Block a user