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