1 #ifndef CARMA_UTIL_COMPILE_TIME_CHECK_H
2 #define CARMA_UTIL_COMPILE_TIME_CHECK_H
9 template <
bool assertion >
10 void compileTimeCheck( );
14 inline void compileTimeCheck< true >( ) { }
17 template <
bool assertion >
18 inline void compileTimeCheck( ) {
19 struct your_compile_time_assertion_failed;
21 if (
sizeof( your_compile_time_assertion_failed ) != 3 )