xo-parser: prep: + exprstatestack arg to exprstate::on_colon()
This commit is contained in:
parent
00eaa55cc9
commit
cdd40a20c7
2 changed files with 3 additions and 3 deletions
|
|
@ -387,7 +387,7 @@ namespace xo {
|
|||
}
|
||||
|
||||
expraction
|
||||
exprstate::on_colon() {
|
||||
exprstate::on_colon(exprstatestack * /*p_stack*/) {
|
||||
constexpr bool c_debug_flag = true;
|
||||
scope log(XO_DEBUG(c_debug_flag));
|
||||
|
||||
|
|
@ -508,7 +508,7 @@ namespace xo {
|
|||
return expraction();
|
||||
|
||||
case tokentype::tk_colon:
|
||||
return this->on_colon();
|
||||
return this->on_colon(p_stack);
|
||||
|
||||
case tokentype::tk_doublecolon:
|
||||
case tokentype::tk_semicolon:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue