1
0
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:
Bartosz Taudul
2018-04-21 23:19:48 +02:00
parent ea2be1bce9
commit 28380f2d25
5 changed files with 78 additions and 33 deletions
+18
View File
@@ -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