Skip to content

Commit

Permalink
Fix compile error in harfbuzz on AIX
Browse files Browse the repository at this point in the history
Signed-off-by: Keith W. Campbell <keithc@ca.ibm.com>
  • Loading branch information
keithc-ca committed Aug 3, 2023
1 parent afec503 commit 66679e2
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 66679e2

Please sign in to comment.