From efae1279936112cefe9fa1753998993df81d6201 Mon Sep 17 00:00:00 2001 From: Christian Gmeiner Date: Fri, 15 Jun 2018 12:18:56 +0200 Subject: [PATCH] util/bitset: include util/macro.h BITSET_FFS(x) macro makes use of ARRAY_SIZE(x) macro which is defined in util/macro.h. Include it directy to make usage more straightforward. Fixes: 692bd4a1ab9 ("util: replace Elements() with ARRAY_SIZE()") Signed-off-by: Christian Gmeiner Reviewed-by: Eric Engestrom --- src/util/bitset.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/util/bitset.h b/src/util/bitset.h index 75e29a9..adafc72 100644 --- a/src/util/bitset.h +++ b/src/util/bitset.h @@ -32,6 +32,7 @@ #define BITSET_H #include "util/bitscan.h" +#include "util/macros.h" /**************************************************************************** * generic bitset implementation -- 2.7.4