double 'const' decl was causing clang to error
This commit is contained in:
parent
c05559f04b
commit
4ee72f7308
1 changed files with 1 additions and 1 deletions
|
|
@ -20,7 +20,7 @@ static HParseResult* parse_token(void *env, HParseState *state) {
|
||||||
return make_result(state, tok);
|
return make_result(state, tok);
|
||||||
}
|
}
|
||||||
|
|
||||||
const const HParserVtable token_vt = {
|
const HParserVtable token_vt = {
|
||||||
.parse = parse_token,
|
.parse = parse_token,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue