1
0
mirror of https://github.com/wolfpld/tracy synced 2025-05-01 05:03:53 +00:00
tracy/client/TracyAlloc.hpp
2017-10-14 16:52:05 +02:00

22 lines
264 B
C++

#ifndef __TRACYALLOC_HPP__
#define __TRACYALLOC_HPP__
#include "tracy_rpmalloc.hpp"
namespace tracy
{
static inline void* tracy_malloc( size_t size )
{
return rpmalloc( size );
}
static inline void tracy_free( void* ptr )
{
rpfree( ptr );
}
}
#endif