From 960267fc4315a138f0963e78407e3af2ec6007af Mon Sep 17 00:00:00 2001 From: Michiharu Ariza Date: Mon, 22 Oct 2018 16:37:39 -0700 Subject: [PATCH] fix build attempt ^4 --- src/hb-ot-cff-common.hh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/hb-ot-cff-common.hh b/src/hb-ot-cff-common.hh index aa48d7afd..a7ff1972b 100644 --- a/src/hb-ot-cff-common.hh +++ b/src/hb-ot-cff-common.hh @@ -380,11 +380,8 @@ struct Remap : hb_vector_t return true; } - inline bool includes (hb_codepoint_t id) const - { return (id < len) && ((*this)[id] != CFF_UNDEF_CODE); } - inline bool excludes (hb_codepoint_t id) const - { return !includes (id); } + { return (id < len) && ((*this)[id] == CFF_UNDEF_CODE); } inline hb_codepoint_t operator[] (hb_codepoint_t i) const {