From d053426bb469883bf1a40dd97fa4d57ef6d1ac47 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Mon, 6 Nov 2023 11:44:14 -0700 Subject: [PATCH] Format --- src/hb-sanitize.hh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/hb-sanitize.hh b/src/hb-sanitize.hh index cc1161aa8..408649c76 100644 --- a/src/hb-sanitize.hh +++ b/src/hb-sanitize.hh @@ -134,7 +134,10 @@ struct hb_sanitize_context_t : const char *get_name () { return "SANITIZE"; } template bool may_dispatch (const T *obj HB_UNUSED, const F *format) - { return format->sanitize (this) && hb_barrier (); } + { + return format->sanitize (this) && + hb_barrier (); + } static return_t default_return_value () { return true; } static return_t no_dispatch_return_value () { return false; } bool stop_sublookup_iteration (const return_t r) const { return !r; }