Remove redundant void from C++ sources (#1486)
diff --git a/src/hb-ot-color-cbdt-table.hh b/src/hb-ot-color-cbdt-table.hh index 8fa0ca2..b1971a7 100644 --- a/src/hb-ot-color-cbdt-table.hh +++ b/src/hb-ot-color-cbdt-table.hh
@@ -390,7 +390,7 @@ upem = hb_face_get_upem (face); } - void fini (void) + void fini () { this->cblc.destroy (); this->cbdt.destroy (); @@ -505,7 +505,7 @@ return hb_blob_get_empty (); } - bool has_data (void) const { return cbdt.get_length (); } + bool has_data () const { return cbdt.get_length (); } private: hb_blob_ptr_t<CBLC> cblc;