[Mesa-dev] [PATCH] util/bitset: include util/macro.h

Christian Gmeiner christian.gmeiner at gmail.com
Fri Jun 15 10:18:56 UTC 2018


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 <christian.gmeiner at gmail.com>
---
 src/util/bitset.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/util/bitset.h b/src/util/bitset.h
index 75e29a9a51..adafc72a5f 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.17.1



More information about the mesa-dev mailing list