commit | ff92de766bf775bfdd3a01bda94de699180ff86a | [log] [tgz] |
---|---|---|
author | Behdad Esfahbod <[email protected]> | Tue May 29 18:48:45 2018 -0700 |
committer | Behdad Esfahbod <[email protected]> | Tue May 29 18:48:45 2018 -0700 |
tree | cbf91f47c8809bb690b1c0f74720afb2d524112f | |
parent | a2444346220757e7743c972cbd24f925e72b419d [diff] |
Remove HB_DISALLOW_COPY_AND_ASSIGN llvm-gcc-4.2 bot had this problem: hb-private.hh:812: error: initializer specified for non-virtual method 'void hb_vector_t<Type, StaticSize>::operator=(const hb_vector_t<Type, StaticSize>&) [with Type = hb_user_data_array_t::hb_user_data_item_t, unsigned int StaticSize = 1u]' Removing the delete didn't work with a constructor. So, remove constructor. Just disallow assignment. Still better than nothing.