xo-reader: fix hardwired debug flag
This commit is contained in:
parent
1d40b5da55
commit
20b105d909
7 changed files with 20 additions and 15 deletions
|
|
@ -28,7 +28,7 @@ namespace xo {
|
|||
|
||||
void
|
||||
exprstatestack::push_exprstate(std::unique_ptr<exprstate> exs) {
|
||||
constexpr bool c_debug_flag = true;
|
||||
constexpr bool c_debug_flag = false;
|
||||
scope log(XO_DEBUG(c_debug_flag),
|
||||
xtag("exs", exs.get()));
|
||||
|
||||
|
|
@ -41,7 +41,7 @@ namespace xo {
|
|||
|
||||
std::unique_ptr<exprstate>
|
||||
exprstatestack::pop_exprstate() {
|
||||
constexpr bool c_debug_flag = true;
|
||||
constexpr bool c_debug_flag = false;
|
||||
scope log(XO_DEBUG(c_debug_flag),
|
||||
xtag("top.exstype", top_exprstate().exs_type()));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue