Go to the source code of this file.
Compounds | |
| class | aflibDebug |
Defines | |
| #define | aflib_fatal ::aflibDebug::fatal |
| #define | aflib_warning ::aflibDebug::warning |
| #define | aflib_info ::aflibDebug::info |
| #define | aflib_debug ::aflibDebug::debug |
| #define | aflibdebug ::aflibDebug::debug |
| #define | setaflibdebug(x) aflib_warning("setaflibdebug is obsolete") |
| #define | aflib_return_if_fail(expr) |
| #define | aflib_return_val_if_fail(expr, val) |
| #define | aflib_assert(expr) |
|
|
Value: if (!(expr)) \
aflib_fatal ("file %s: line %d: assertion failed: (%s)", \
__FILE__, __LINE__, #expr); \ |
|
|
|
|
|
|
|
|
|
|
|
Value: if (!(expr)) \
{ \
aflib_warning ("file %s: line %d: assertion failed: (%s)", \
__FILE__, __LINE__, #expr); \
return; \
} |
|
|
Value: if (!(expr)) \
{ \
aflib_warning ("file %s: line %d: assertion failed: (%s)", \
__FILE__, __LINE__, #expr); \
return (val); \
} |
|
|
|
|
|
|
|
|
|
1.2.15