mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-13 08:42:59 +00:00
Fix sign compare warnings
../../third_party/harfbuzz-ng/src/src/hb-map.hh(56,45): warning: comparison of integers of different signs: 'const hb_codepoint_t' (aka 'const unsigned int') and 'hb_map_t::(anonymous enum at ../../third_party/harfbuzz-ng/src/src/hb-map.hh:169:3)' [-Wsign-compare] bool is_unused () const { return key == INVALID; }
This commit is contained in:
parent
ce317d0320
commit
043b610fa6
2 changed files with 2 additions and 2 deletions
|
@ -166,7 +166,7 @@ struct hb_map_t
|
|||
hb_codepoint_t operator [] (unsigned int key) const
|
||||
{ return get (key); }
|
||||
|
||||
enum { INVALID = HB_MAP_VALUE_INVALID };
|
||||
static const hb_codepoint_t INVALID = HB_MAP_VALUE_INVALID;
|
||||
|
||||
void clear ()
|
||||
{
|
||||
|
|
|
@ -666,7 +666,7 @@ struct hb_set_t
|
|||
return INVALID;
|
||||
}
|
||||
|
||||
static const hb_codepoint_t INVALID = HB_SET_VALUE_INVALID;
|
||||
static const hb_codepoint_t INVALID = HB_SET_VALUE_INVALID;
|
||||
|
||||
/*
|
||||
* Iterator implementation.
|
||||
|
|
Loading…
Add table
Reference in a new issue