mirror of
https://github.com/wolfpld/tracy.git
synced 2025-03-20 07:40:02 +08:00
Move bad version dialogs to a separate file.
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user