diff --git a/server/TracySlab.hpp b/server/TracySlab.hpp index efd01495..705af1da 100644 --- a/server/TracySlab.hpp +++ b/server/TracySlab.hpp @@ -44,7 +44,7 @@ public: } template - T* AllocInit() + tracy_force_inline T* AllocInit() { const auto size = sizeof( T ); assert( size <= BlockSize ); @@ -59,7 +59,7 @@ public: } template - T* AllocInit( size_t sz ) + tracy_force_inline T* AllocInit( size_t sz ) { const auto size = sizeof( T ) * sz; assert( size <= BlockSize );