Update hb-serialize.hh (#4576)

* Update hb-serialize.hh

This version does compile with g++ 4.8.3 which is the newest available version on Aix5.3

* Update hb-serialize.hh

Back to the original version, just without `this->`
pull/4579/head
Lőrinczy, Zsigmond 1 year ago committed by GitHub
parent c546aa6c5a
commit 4c77bd921c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      src/hb-serialize.hh

@ -156,9 +156,9 @@ struct hb_serialize_context_t
object_t *next;
auto all_links () const HB_AUTO_RETURN
(( hb_concat (this->real_links, this->virtual_links) ));
(( hb_concat (real_links, virtual_links) ));
auto all_links_writer () HB_AUTO_RETURN
(( hb_concat (this->real_links.writer (), this->virtual_links.writer ()) ));
(( hb_concat (real_links.writer (), virtual_links.writer ()) ));
};
struct snapshot_t

Loading…
Cancel
Save