commit | f54f5c1b16b920464557ff29049b07668b12dad7 | [log] [tgz] |
---|---|---|
author | Behdad Esfahbod <behdad@behdad.org> | Thu Jul 22 11:09:02 2021 -0700 |
committer | Behdad Esfahbod <behdad@behdad.org> | Thu Jul 22 11:38:27 2021 -0700 |
tree | 4a6501da6612495a5bb66496037f851150e4e3db | |
parent | 6269866bddd789be354d189ce31ad444b479a772 [diff] [blame] |
Fix debug printer of bool
diff --git a/src/hb-debug.hh b/src/hb-debug.hh index a92614d..f80c898 100644 --- a/src/hb-debug.hh +++ b/src/hb-debug.hh
@@ -307,7 +307,7 @@ _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;