SST/macro
assert.h
Go to the documentation of this file.
1 #ifndef ASSERT_H
2 #define ASSERT_H
3 
4 class DefaultCTFailure {};
5 
6 template <bool t, typename msg = DefaultCTFailure>
8  enum { N = 1 - 2 * int(t) };
9  static char A[N];
10 };
11 
12 template <class T>
14 
15 template <class T>
16 void invalidContainer(const T& t)
17 {
19 }
20 
21 
22 
23 
24 #endif // ASSERT_H
25 
void invalidContainer(const T &t)
Definition: assert.h:16