Remove NO_COPY()
This commit is contained in:
parent
97145df249
commit
384862d7ee
|
@ -99,7 +99,9 @@ struct hb_ot_shape_planner_t
|
|||
}
|
||||
|
||||
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 &);
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -647,14 +647,6 @@ static inline unsigned char TOLOWER (unsigned char c)
|
|||
{ return (c >= 'A' && c <= 'Z') ? c - 'A' + 'a' : c; }
|
||||
|
||||
|
||||
/* C++ helpers */
|
||||
|
||||
/* Makes class uncopyable. Use in private: section. */
|
||||
#define NO_COPY(T) \
|
||||
T (const T &o); \
|
||||
T &operator = (const T &o)
|
||||
|
||||
|
||||
/* Debug */
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue