summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2010-04-25 23:01:45 -0400
committerBehdad Esfahbod <behdad@behdad.org>2010-04-25 23:01:45 -0400
commit66d6eb30eb0b8d61e00f86ea0c7829abaddb52fa (patch)
treeab536796fdae65a722a1845ac58cfb4ba3cacd83
parent690b9194619589c32ffc0c092e45262ae7776e79 (diff)
Rename Var to Obj
-rw-r--r--src/hb-open-type-private.hh8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/hb-open-type-private.hh b/src/hb-open-type-private.hh
index 106af0c..258a462 100644
--- a/src/hb-open-type-private.hh
+++ b/src/hb-open-type-private.hh
@@ -265,10 +265,10 @@ _hb_sanitize_edit (SANITIZE_ARG_DEF,
#define SANITIZE_ARRAY(A,S,L) HB_LIKELY (_hb_sanitize_array (SANITIZE_ARG, CharP(A), S, L))
-#define NEUTER(Var, Val) \
- (SANITIZE_OBJ (Var) && \
- _hb_sanitize_edit (SANITIZE_ARG, CharP(&(Var)), (Var).get_size ()) && \
- ((Var).set (Val), true))
+#define NEUTER(Obj, Val) \
+ (SANITIZE_OBJ (Obj) && \
+ _hb_sanitize_edit (SANITIZE_ARG, CharP(&(Obj)), (Obj).get_size ()) && \
+ ((Obj).set (Val), true))
/* Template to sanitize an object. */