xo-reader2: drop temporary debug flag
This commit is contained in:
parent
57981d93ef
commit
fc17a6f856
1 changed files with 3 additions and 3 deletions
|
|
@ -497,7 +497,7 @@ namespace xo {
|
|||
DProgressSsm::on_parsed_expression(obj<AExpression> expr,
|
||||
ParserStateMachine * p_psm)
|
||||
{
|
||||
const bool c_debug_flag = p_psm->debug_flag() || true;
|
||||
const bool c_debug_flag = p_psm->debug_flag();
|
||||
|
||||
scope log(XO_DEBUG(c_debug_flag));
|
||||
|
||||
|
|
@ -516,7 +516,7 @@ namespace xo {
|
|||
const Token & tk,
|
||||
ParserStateMachine * p_psm)
|
||||
{
|
||||
const bool c_debug_flag = p_psm->debug_flag() || true;
|
||||
const bool c_debug_flag = p_psm->debug_flag();
|
||||
|
||||
scope log(XO_DEBUG(c_debug_flag),
|
||||
xtag("expr", expr),
|
||||
|
|
@ -1215,7 +1215,7 @@ namespace xo {
|
|||
case optype::op_assign:
|
||||
assert(false);
|
||||
break;
|
||||
|
||||
|
||||
case optype::op_equal:
|
||||
{
|
||||
auto pm_obj = (with_facet<AGCObject>::mkobj
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue