ATLAS Offline Software
|
An overridable variant of assert. More...
#include <cassert>
Go to the source code of this file.
Macros | |
#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.
Definition in file ATHCONTAINERS_ASSERT.h.
#define ATHCONTAINERS_ASSERT | ( | X | ) | assert(X) |
Definition at line 32 of file ATHCONTAINERS_ASSERT.h.