1
0
mirror of https://github.com/wolfpld/tracy synced 2025-04-30 20:53:52 +00:00
tracy/common/TracyForceInline.hpp
2017-11-19 16:32:38 +01:00

13 lines
273 B
C++

#ifndef __TRACYFORCEINLINE_HPP__
#define __TRACYFORCEINLINE_HPP__
#if defined(__GNUC__)
# define tracy_force_inline __attribute__((always_inline))
#elif defined(_MSC_VER)
# define tracy_force_inline __forceinline
#else
# define tracy_force_inline inline
#endif
#endif