--- old/src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape-private.hh 2017-11-30 10:47:09.409458177 -0800 +++ new/src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape-private.hh 2017-11-30 10:47:09.249458181 -0800 @@ -73,7 +73,7 @@ hb_ot_shape_planner_t (const hb_shape_plan_t *master_plan) : face (master_plan->face_unsafe), props (master_plan->props), - shaper (NULL), + shaper (nullptr), map (face, &props) {} ~hb_ot_shape_planner_t (void) { map.finish (); } @@ -99,7 +99,9 @@ } private: - NO_COPY (hb_ot_shape_planner_t); + /* No copy. */ + hb_ot_shape_planner_t (const hb_ot_shape_planner_t &); + hb_ot_shape_planner_t &operator = (const hb_ot_shape_planner_t &); };