|
Limbo 3.5.4
|
assertion with message More...
Go to the source code of this file.
Classes | |
| struct | limbo::StaticAssert< true > |
| template specialization More... | |
Namespaces | |
| namespace | limbo |
| namespace for Limbo | |
Macros | |
| #define | limboAssertMsg(condition, args...) |
| custom assertion with message | |
| #define | limboAssert(condition) |
| custom assertion without message | |
| #define | limboStaticAssert(condition) |
| compile time assertion | |
assertion with message
macro: limboAssertMsg, limboAssert
attribute: assertion with or without message. compared with assert in STL, it provides detailed information on the failures and positions
Definition in file AssertMsg.h.
| #define limboAssert | ( | condition | ) |
custom assertion without message
example usage: limboAssert(a == 1);
Definition at line 36 of file AssertMsg.h.
| #define limboAssertMsg | ( | condition, | |
| args... ) |
custom assertion with message
example usage: limboAssertMsg(a == 1, "this is %s", name);
Definition at line 24 of file AssertMsg.h.
| #define limboStaticAssert | ( | condition | ) |
compile time assertion
Definition at line 59 of file AssertMsg.h.