From 10bd6b8d913a57260b35c1ef830db37c06eebd18 Mon Sep 17 00:00:00 2001 From: Michiharu Ariza Date: Thu, 20 Jun 2019 16:22:08 -0700 Subject: [PATCH] minor --- src/hb-bimap.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-bimap.hh b/src/hb-bimap.hh index cd7729c2a..29291506a 100644 --- a/src/hb-bimap.hh +++ b/src/hb-bimap.hh @@ -62,7 +62,7 @@ struct hb_bimap_t } hb_codepoint_t get (hb_codepoint_t lhs) const { return forw_map.get (lhs); } - hb_codepoint_t backward (hb_codepoint_t rhs) const { return back_map[rhs]; } + hb_codepoint_t backward (hb_codepoint_t rhs) const { return back_map.get (rhs); } hb_codepoint_t operator [] (hb_codepoint_t lhs) const { return get (lhs); } bool has (hb_codepoint_t lhs, hb_codepoint_t *vp = nullptr) const { return forw_map.has (lhs, vp); }