From 7e3edfa4541189cc3f9f477192629ad1a197b727 Mon Sep 17 00:00:00 2001 From: Ebrahim Byagowi Date: Sat, 18 Jul 2020 19:03:36 +0430 Subject: [PATCH] minor --- src/hb-open-type.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hb-open-type.hh b/src/hb-open-type.hh index 2bffbd7b0..50558cf8d 100644 --- a/src/hb-open-type.hh +++ b/src/hb-open-type.hh @@ -552,8 +552,8 @@ struct SortedUnsizedArrayOf : UnsizedArrayOf { return *as_array (len).bsearch (x, ¬_found); } template bool bfind (unsigned int len, const T &x, unsigned int *i = nullptr, - hb_bfind_not_found_t not_found = HB_BFIND_NOT_FOUND_DONT_STORE, - unsigned int to_store = (unsigned int) -1) const + hb_bfind_not_found_t not_found = HB_BFIND_NOT_FOUND_DONT_STORE, + unsigned int to_store = (unsigned int) -1) const { return as_array (len).bfind (x, i, not_found, to_store); } };