Fix debug printer of bool

This commit is contained in:
Behdad Esfahbod 2021-07-22 11:09:02 -07:00
parent 6269866bdd
commit f54f5c1b16
1 changed files with 1 additions and 1 deletions

View File

@ -307,7 +307,7 @@ struct hb_auto_trace_t
_hb_debug_msg<max_level> (what, obj, func, true, plevel ? *plevel : 1, -1,
"return %s (line %d)",
hb_printer_t<decltype (v)>().print (v), line);
hb_printer_t<hb_decay<decltype (v)>>().print (v), line);
if (plevel) --*plevel;
plevel = nullptr;
returned = true;