silence a warning when compiling with NDEBUG
This commit is contained in:
parent
1c8764e1da
commit
75326263df
1 changed files with 1 additions and 1 deletions
|
|
@ -64,7 +64,7 @@ static bool is_isValidCF(void *env) {
|
||||||
|
|
||||||
static bool h_svm_action_ignoreseq(HArena *arena, HSVMContext *ctx, void* env) {
|
static bool h_svm_action_ignoreseq(HArena *arena, HSVMContext *ctx, void* env) {
|
||||||
HIgnoreSeq *seq = (HIgnoreSeq*)env;
|
HIgnoreSeq *seq = (HIgnoreSeq*)env;
|
||||||
HParsedToken* save;
|
HParsedToken* save = NULL;
|
||||||
// We can assume that each subitem generated at most one item on the
|
// We can assume that each subitem generated at most one item on the
|
||||||
// stack.
|
// stack.
|
||||||
assert(seq->len >= 1);
|
assert(seq->len >= 1);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue