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