An overridable variant of assert. More...
#include <cassert>
Go to the source code of this file.
Defines | |
#define | ATHCONTAINERS_ASSERT(X) assert(X) |
An overridable variant of assert.
It turns out that it's not feasible to override what the standard assert macro does (because assert.h does not use an include guard). So we instead introduce our own assert macro. Normally, this is the same as assert, but unit test programs may redefine it.