VecMustPushBackL
Description
Aborting variant of VecPushBackL. See that macro for parameter semantics and success-state effects.
Success
Returns to the caller. The underlying VecPushBackL call succeeded; see VecPushBackL for the post-state.
Failure
Does not return - aborts via LOG_FATAL / SysAbort when the underlying VecPushBackL call returns false.
Usage example (Cross-references)
Usage examples (Cross-references)
- In
Insert.h:907:
do { \
if (!VecPushBackL((v), (val))) { \
LOG_FATAL("VecMustPushBackL failed"); \
} \
} while (0)
Last updated on