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