diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2009-08-06 14:28:18 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2009-08-06 14:28:18 -0400 |
commit | d653b893b1cf5def17dda4dbcb1e0e70e8f1bae2 (patch) | |
tree | 1769a8fabc9b52203babe4c5aec0d7920673b4c3 | |
parent | d898dc6ff2a2ebdfcccef59ec3c044b7542b1009 (diff) | |
download | pango-d653b893b1cf5def17dda4dbcb1e0e70e8f1bae2.tar.gz |
[HB] Remove a few 'inline's, though the compiler mostly ignores them
-rw-r--r-- | pango/opentype/hb-open-file-private.hh | 1 | ||||
-rw-r--r-- | pango/opentype/hb-open-type-private.hh | 16 | ||||
-rw-r--r-- | pango/opentype/hb-ot-layout-gsubgpos-private.hh | 6 |
3 files changed, 11 insertions, 12 deletions
diff --git a/pango/opentype/hb-open-file-private.hh b/pango/opentype/hb-open-file-private.hh index 03d9e141..0d4912a3 100644 --- a/pango/opentype/hb-open-file-private.hh +++ b/pango/opentype/hb-open-file-private.hh @@ -120,7 +120,6 @@ struct TTCHeader if (version.major < 1 || version.major > 2) return true; /* XXX Maybe we shouldn't NEUTER these offsets, they may cause a full copy of * the whole font right now. */ - //if (!table.sanitize (SANITIZE_ARG)) return false; return table.sanitize (SANITIZE_ARG, CONST_CHARP(this), CONST_CHARP(this)); } diff --git a/pango/opentype/hb-open-type-private.hh b/pango/opentype/hb-open-type-private.hh index 8c01c682..e5802032 100644 --- a/pango/opentype/hb-open-type-private.hh +++ b/pango/opentype/hb-open-type-private.hh @@ -499,21 +499,21 @@ struct GenericOffsetTo : OffsetType return CONST_CAST(Type, *CONST_CHARP(base), offset); } - inline bool sanitize (SANITIZE_ARG_DEF, const void *base) { + bool sanitize (SANITIZE_ARG_DEF, const void *base) { SANITIZE_DEBUG (); if (!SANITIZE_OBJ (*this)) return false; unsigned int offset = *this; if (HB_UNLIKELY (!offset)) return true; return SANITIZE (CAST(Type, *DECONST_CHARP(base), offset)) || NEUTER (DECONST_CAST(OffsetType,*this,0), 0); } - inline bool sanitize (SANITIZE_ARG_DEF, const void *base, const void *base2) { + bool sanitize (SANITIZE_ARG_DEF, const void *base, const void *base2) { SANITIZE_DEBUG (); if (!SANITIZE_OBJ (*this)) return false; unsigned int offset = *this; if (HB_UNLIKELY (!offset)) return true; return SANITIZE_BASE (CAST(Type, *DECONST_CHARP(base), offset), base2) || NEUTER (DECONST_CAST(OffsetType,*this,0), 0); } - inline bool sanitize (SANITIZE_ARG_DEF, const void *base, unsigned int user_data) { + bool sanitize (SANITIZE_ARG_DEF, const void *base, unsigned int user_data) { SANITIZE_DEBUG (); if (!SANITIZE_OBJ (*this)) return false; unsigned int offset = *this; @@ -544,7 +544,7 @@ struct GenericArrayOf inline unsigned int get_size () const { return sizeof (len) + len * sizeof (array[0]); } - inline bool sanitize (SANITIZE_ARG_DEF) { + bool sanitize (SANITIZE_ARG_DEF) { SANITIZE_DEBUG (); if (!SANITIZE_GET_SIZE()) return false; /* Note; for non-recursive types, this is not much needed @@ -555,7 +555,7 @@ struct GenericArrayOf */ return true; } - inline bool sanitize (SANITIZE_ARG_DEF, const void *base) { + bool sanitize (SANITIZE_ARG_DEF, const void *base) { SANITIZE_DEBUG (); if (!SANITIZE_GET_SIZE()) return false; unsigned int count = len; @@ -564,7 +564,7 @@ struct GenericArrayOf return false; return true; } - inline bool sanitize (SANITIZE_ARG_DEF, const void *base, const void *base2) { + bool sanitize (SANITIZE_ARG_DEF, const void *base, const void *base2) { SANITIZE_DEBUG (); if (!SANITIZE_GET_SIZE()) return false; unsigned int count = len; @@ -573,7 +573,7 @@ struct GenericArrayOf return false; return true; } - inline bool sanitize (SANITIZE_ARG_DEF, const void *base, unsigned int user_data) { + bool sanitize (SANITIZE_ARG_DEF, const void *base, unsigned int user_data) { SANITIZE_DEBUG (); if (!SANITIZE_GET_SIZE()) return false; unsigned int count = len; @@ -620,7 +620,7 @@ struct HeadlessArrayOf inline unsigned int get_size () const { return sizeof (len) + (len ? len - 1 : 0) * sizeof (array[0]); } - inline bool sanitize (SANITIZE_ARG_DEF) { + bool sanitize (SANITIZE_ARG_DEF) { SANITIZE_DEBUG (); if (!SANITIZE_GET_SIZE()) return false; /* Note; for non-recursive types, this is not much needed diff --git a/pango/opentype/hb-ot-layout-gsubgpos-private.hh b/pango/opentype/hb-ot-layout-gsubgpos-private.hh index 6fce03ae..63ae4633 100644 --- a/pango/opentype/hb-ot-layout-gsubgpos-private.hh +++ b/pango/opentype/hb-ot-layout-gsubgpos-private.hh @@ -449,7 +449,7 @@ struct Context } } - inline bool sanitize (SANITIZE_ARG_DEF) { + bool sanitize (SANITIZE_ARG_DEF) { SANITIZE_DEBUG (); if (!SANITIZE (u.format)) return false; switch (u.format) { @@ -756,7 +756,7 @@ struct ChainContext } } - inline bool sanitize (SANITIZE_ARG_DEF) { + bool sanitize (SANITIZE_ARG_DEF) { SANITIZE_DEBUG (); if (!SANITIZE (u.format)) return false; switch (u.format) { @@ -826,7 +826,7 @@ struct Extension } } - inline bool sanitize (SANITIZE_ARG_DEF) { + bool sanitize (SANITIZE_ARG_DEF) { SANITIZE_DEBUG (); if (!SANITIZE (u.format)) return false; switch (u.format) { |