From d6b28057a5cc636138cd453947d3a2008f18729f Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sat, 30 Mar 2019 19:31:51 -0700 Subject: [PATCH] Fix hb_hash(pointer) --- src/hb-algs.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-algs.hh b/src/hb-algs.hh index ab6782de3..c1b38e877 100644 --- a/src/hb-algs.hh +++ b/src/hb-algs.hh @@ -45,7 +45,7 @@ static const struct template uint32_t operator () (const T *v) const - { return operator() (v); } + { return operator() (*v); } template