double 'const' decl was causing clang to error

This commit is contained in:
Meredith L. Patterson 2012-11-11 11:10:39 -05:00
parent c05559f04b
commit 4ee72f7308

View file

@ -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,
}; };