Lamp-Da 0.1
A compact lantern project
Loading...
Searching...
No Matches
assert.h
Go to the documentation of this file.
1
5#ifndef SRC_SYSTEM_ASSERT_H
6#define SRC_SYSTEM_ASSERT_H
7
8#include <cassert>
9
10#ifdef NDEBUG
11static bool assertBool(int expression) { return expression; }
12#else
13#define assertBool(condition) \
14 assert(condition); \
15 true
16#endif
17
18#endif