Index: third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh |
=================================================================== |
--- third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh (리비전 201894) |
+++ third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh (작업 사본) |
@@ -129,8 +129,7 @@ |
struct RangeRecord |
{ |
inline int cmp (hb_codepoint_t g) const { |
- hb_codepoint_t a = start, b = end; |
- return g < a ? -1 : g <= b ? 0 : +1 ; |
+ return g < start ? -1 : g <= end ? 0 : +1 ; |
} |
inline bool sanitize (hb_sanitize_context_t *c) { |