From f54f5c1b16b920464557ff29049b07668b12dad7 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 22 Jul 2021 11:09:02 -0700 Subject: [PATCH] Fix debug printer of bool --- src/hb-debug.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-debug.hh b/src/hb-debug.hh index a92614d01..f80c8980b 100644 --- a/src/hb-debug.hh +++ b/src/hb-debug.hh @@ -307,7 +307,7 @@ struct hb_auto_trace_t _hb_debug_msg (what, obj, func, true, plevel ? *plevel : 1, -1, "return %s (line %d)", - hb_printer_t().print (v), line); + hb_printer_t>().print (v), line); if (plevel) --*plevel; plevel = nullptr; returned = true;