take the const off static epsilon parser so h_desugar can memoize
This commit is contained in:
parent
c26d5c114a
commit
916027a55f
1 changed files with 1 additions and 1 deletions
|
|
@ -15,7 +15,7 @@ static const HParserVtable epsilon_vt = {
|
||||||
.desugar = desugar_epsilon,
|
.desugar = desugar_epsilon,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const HParser epsilon_p = {
|
static HParser epsilon_p = {
|
||||||
.vtable = &epsilon_vt,
|
.vtable = &epsilon_vt,
|
||||||
.env = NULL
|
.env = NULL
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue