From 3b3513ffe3b0c27e560afaf618dad1590166a79e Mon Sep 17 00:00:00 2001 From: Al Date: Mon, 26 Oct 2015 18:49:58 -0400 Subject: [PATCH] [fix] warnings in collections.h/vector_math.h --- src/collections.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/collections.h b/src/collections.h index 9e561a2b..0ff39fe4 100644 --- a/src/collections.h +++ b/src/collections.h @@ -1,8 +1,6 @@ #ifndef COLLECTIONS_H #define COLLECTIONS_H - - #include #include @@ -11,6 +9,8 @@ #include "vector.h" #include "vector_math.h" +#define nop(x) (x) + // Init collections used in multiple places // Maps @@ -35,9 +35,9 @@ KHASH_SET_INIT_STR(str_set) // Vectors VECTOR_INIT_NUMERIC(int32_array, int32_t, uint32_t, abs) -VECTOR_INIT_NUMERIC(uint32_array, uint32_t, uint32_t, abs) +VECTOR_INIT_NUMERIC(uint32_array, uint32_t, uint32_t, nop) VECTOR_INIT_NUMERIC(int64_array, int64_t, uint64_t, llabs) -VECTOR_INIT_NUMERIC(uint64_array, uint64_t, uint64_t, llabs) +VECTOR_INIT_NUMERIC(uint64_array, uint64_t, uint64_t, nop) VECTOR_INIT_NUMERIC_FLOAT(float_array, float, fabsf) VECTOR_INIT_NUMERIC_FLOAT(double_array, double, fabs)