diff --git a/src/hb-open-type-private.hh b/src/hb-open-type-private.hh index fde4d7fee..4e8f1e430 100644 --- a/src/hb-open-type-private.hh +++ b/src/hb-open-type-private.hh @@ -45,7 +45,6 @@ template inline const char * CharP (const Type* X) { return rein template inline char * CharP (Type* X) { return reinterpret_cast(X); } #define CONST_CAST(T,X,Ofs) (*(reinterpret_cast(CharP(&(X)) + Ofs))) -#define DECONST_CAST(T,X,Ofs) (*(reinterpret_cast((char *)CharP(&(X)) + Ofs))) #define CAST(T,X,Ofs) (*(reinterpret_cast(CharP(&(X)) + Ofs)))