Module: Mesa
Branch: master
Commit: efae1279936112cefe9fa1753998993df81d6201
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=efae1279936112cefe9fa1753998993df81d6201

Author: Christian Gmeiner <christian.gmei...@gmail.com>
Date:   Fri Jun 15 12:18:56 2018 +0200

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 <christian.gmei...@gmail.com>
Reviewed-by: Eric Engestrom <eric.engest...@intel.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

_______________________________________________
mesa-commit mailing list
mesa-commit@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to