mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-25 04:05:53 +01:00
12 lines
206 B
C
12 lines
206 B
C
|
#ifndef ASSERT_H
|
||
|
#define ASSERT_H
|
||
|
|
||
|
template<bool> struct CompileTimeAssert;
|
||
|
template<> struct CompileTimeAssert <true> {};
|
||
|
|
||
|
#define STATIC_ASSERT(e) \
|
||
|
(CompileTimeAssert <(e) != 0>())
|
||
|
|
||
|
#endif // ASSERT_H
|
||
|
|