|
|
@ -408,24 +408,24 @@ static_assert ((sizeof (hb_position_t) == 4), ""); |
|
|
|
static_assert ((sizeof (hb_mask_t) == 4), ""); |
|
|
|
static_assert ((sizeof (hb_mask_t) == 4), ""); |
|
|
|
static_assert ((sizeof (hb_var_int_t) == 4), ""); |
|
|
|
static_assert ((sizeof (hb_var_int_t) == 4), ""); |
|
|
|
|
|
|
|
|
|
|
|
#define HB_NO_COPY_ASSIGN(TypeName) \ |
|
|
|
#define HB_DELETE_COPY_ASSIGN(TypeName) \ |
|
|
|
TypeName(const TypeName&); \
|
|
|
|
TypeName(const TypeName&); \
|
|
|
|
void operator=(const TypeName&) |
|
|
|
void operator=(const TypeName&) |
|
|
|
#define HB_NO_COPY_ASSIGN_TEMPLATE(TypeName, T) \ |
|
|
|
#define HB_DELETE_COPY_ASSIGN_TEMPLATE(TypeName, T) \ |
|
|
|
TypeName(const TypeName<T>&); \
|
|
|
|
TypeName(const TypeName<T>&); \
|
|
|
|
void operator=(const TypeName<T>&) |
|
|
|
void operator=(const TypeName<T>&) |
|
|
|
#define HB_NO_COPY_ASSIGN_TEMPLATE2(TypeName, T1, T2) \ |
|
|
|
#define HB_DELETE_COPY_ASSIGN_TEMPLATE2(TypeName, T1, T2) \ |
|
|
|
TypeName(const TypeName<T1, T2>&); \
|
|
|
|
TypeName(const TypeName<T1, T2>&); \
|
|
|
|
void operator=(const TypeName<T1, T2>&) |
|
|
|
void operator=(const TypeName<T1, T2>&) |
|
|
|
#define HB_NO_CREATE_COPY_ASSIGN(TypeName) \ |
|
|
|
#define HB_DELETE_CREATE_COPY_ASSIGN(TypeName) \ |
|
|
|
TypeName(); \
|
|
|
|
TypeName(); \
|
|
|
|
TypeName(const TypeName&); \
|
|
|
|
TypeName(const TypeName&); \
|
|
|
|
void operator=(const TypeName&) |
|
|
|
void operator=(const TypeName&) |
|
|
|
#define HB_NO_CREATE_COPY_ASSIGN_TEMPLATE(TypeName, T) \ |
|
|
|
#define HB_DELETE_CREATE_COPY_ASSIGN_TEMPLATE(TypeName, T) \ |
|
|
|
TypeName(); \
|
|
|
|
TypeName(); \
|
|
|
|
TypeName(const TypeName<T>&); \
|
|
|
|
TypeName(const TypeName<T>&); \
|
|
|
|
void operator=(const TypeName<T>&) |
|
|
|
void operator=(const TypeName<T>&) |
|
|
|
#define HB_NO_CREATE_COPY_ASSIGN_TEMPLATE2(TypeName, T1, T2) \ |
|
|
|
#define HB_DELETE_CREATE_COPY_ASSIGN_TEMPLATE2(TypeName, T1, T2) \ |
|
|
|
TypeName(); \
|
|
|
|
TypeName(); \
|
|
|
|
TypeName(const TypeName<T1, T2>&); \
|
|
|
|
TypeName(const TypeName<T1, T2>&); \
|
|
|
|
void operator=(const TypeName<T1, T2>&) |
|
|
|
void operator=(const TypeName<T1, T2>&) |
|
|
|