From 22a478101457db70e20f8b4ee44067fff203ada8 Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 15 Jun 2016 17:37:19 -0500 Subject: [PATCH] BLD: use inline macro --- pandas/src/klib/khash_python.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/src/klib/khash_python.h b/pandas/src/klib/khash_python.h index 7684493d08855..a375a73b04c9e 100644 --- a/pandas/src/klib/khash_python.h +++ b/pandas/src/klib/khash_python.h @@ -13,7 +13,7 @@ // simple hash, viewing the double bytes as an int64 and using khash's default // hash for 64 bit integers. // GH 13436 -inline khint64_t asint64(double key) { +khint64_t PANDAS_INLINE asint64(double key) { return *(khint64_t *)(&key); } #define kh_float64_hash_func(key) (khint32_t)((asint64(key))>>33^(asint64(key))^(asint64(key))<<11)