mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
19 lines
302 B
C++
19 lines
302 B
C++
#ifndef __TRACYBADVERSION_HPP__
|
|
#define __TRACYBADVERSION_HPP__
|
|
|
|
#include "../common/TracyForceInline.hpp"
|
|
|
|
namespace tracy
|
|
{
|
|
|
|
namespace detail
|
|
{
|
|
void BadVersionImpl( int& badVer );
|
|
}
|
|
|
|
tracy_force_inline void BadVersion( int& badVer ) { if( badVer != 0 ) detail::BadVersionImpl( badVer ); }
|
|
|
|
}
|
|
|
|
#endif
|