Skip to content

Commit

Permalink
Merge pull request #244 from keithc-ca/harfbuzz
Browse files Browse the repository at this point in the history
Fix compile error in harfbuzz on AIX
  • Loading branch information
JasonFengJ9 committed Aug 4, 2023
2 parents afec503 + 66679e2 commit d428364
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/java.desktop/share/native/libharfbuzz/hb-map.hh
Original file line number Diff line number Diff line change
Expand Up @@ -347,8 +347,7 @@ struct hb_hashmap_t
)
auto keys () const HB_AUTO_RETURN
(
+ iter_items ()
| hb_map (&item_t::key)
+ keys_ref ()
| hb_map (hb_ridentity)
)
auto values_ref () const HB_AUTO_RETURN
Expand All @@ -358,8 +357,7 @@ struct hb_hashmap_t
)
auto values () const HB_AUTO_RETURN
(
+ iter_items ()
| hb_map (&item_t::value)
+ values_ref ()
| hb_map (hb_ridentity)
)

Expand Down

0 comments on commit d428364

Please sign in to comment.