31static const char *cvx_flags_str[] = {
52static const char *cvx_flags_description[] = {
54 "Wrong container type for this function",
56 "The container is empty when it should not be",
59 "Key or value not found",
60 "Invalid argument or operation",
61 "Duplicate key or value",
62 "Generic or unknown error",
63 "Required VTAB function missing",
cvx_flags
binary_heap.h
Definition binary_heap.h:78
@ CVX_FLAG_DUPLICATE
Duplicate key or value.
Definition flags.h:21
@ CVX_FLAG_INVALID
Invalid argument or operation.
Definition flags.h:20
@ CVX_FLAG_NOT_FOUND
Key or value not found.
Definition flags.h:19
@ CVX_FLAG_ALLOC
Allocation failed.
Definition flags.h:15
@ CVX_FLAG_FULL
When a container that doesn't resize is full.
Definition flags.h:17
@ CVX_FLAG_OK
No errors.
Definition flags.h:12
@ CVX_FLAG_RANGE
Index out of range.
Definition flags.h:18
@ CVX_FLAG_EMPTY
Operation can not proceed because the container is empty.
Definition flags.h:16
@ CVX_FLAG_VTAB
Required vtab function was not provided.
Definition flags.h:13
@ CVX_FLAG_WRONG_TAG
Tags are checked so you don't pass the wrong struct to a function.
Definition flags.h:14
@ CVX_FLAG_ERROR
Generic error, or unknown error.
Definition flags.h:22