Skip to content

Commit bb579e2

Browse files
committed
adding empty lines
1 parent a149584 commit bb579e2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pandas/_libs/src/klib/khash_python.h

+2
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,12 @@ khint64_t PANDAS_INLINE asint64(double key) {
2222

2323
// correct for all inputs but not -0.0 and NaNs
2424
#define kh_float64_hash_func_0_NAN(key) (khint32_t)((asint64(key))>>33^(asint64(key))^(asint64(key))<<11)
25+
2526
// correct for all inputs but not NaNs
2627
#define kh_float64_hash_func_NAN(key) ((key) == 0.0 ? \
2728
kh_float64_hash_func_0_NAN(0.0) : \
2829
kh_float64_hash_func_0_NAN(key))
30+
2931
// correct for all
3032
#define kh_float64_hash_func(key) ((key) != (key) ? \
3133
kh_float64_hash_func_NAN(NAN) : \

0 commit comments

Comments
 (0)