Remove unused macro
authorBehdad Esfahbod <behdad@behdad.org>
Thu, 22 Apr 2010 20:52:09 +0000 (16:52 -0400)
committerBehdad Esfahbod <behdad@behdad.org>
Thu, 22 Apr 2010 20:52:09 +0000 (16:52 -0400)
src/hb-open-type-private.hh

index fde4d7f..4e8f1e4 100644 (file)
@@ -45,7 +45,6 @@ template <typename Type> inline const char * CharP (const Type* X) { return rein
 template <typename Type> inline char * CharP (Type* X) { return reinterpret_cast<char *>(X); }
 
 #define CONST_CAST(T,X,Ofs)    (*(reinterpret_cast<const T *>(CharP(&(X)) + Ofs)))
-#define DECONST_CAST(T,X,Ofs)  (*(reinterpret_cast<T *>((char *)CharP(&(X)) + Ofs)))
 #define CAST(T,X,Ofs)          (*(reinterpret_cast<T *>(CharP(&(X)) + Ofs)))