summaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2019-11-29 21:02:39 -0500
committerMarek Olšák <[email protected]>2020-01-24 20:29:29 -0500
commitf36f85d958e876b59057f65d092f5e6c3f0d83ee (patch)
tree7fe2ddfb7996eac64a5c33c049ab4ef369a6591a /src/util
parent6a0dda63dd10d2f71260442c8a44e042bddf5a2f (diff)
util/simple_mtx: add a missing include to get ASSERTED
Reviewed-by: Pierre-Eric Pelloux-Prayer <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/2929>
Diffstat (limited to 'src/util')
-rw-r--r--src/util/simple_mtx.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util/simple_mtx.h b/src/util/simple_mtx.h
index b23c8d2133d..4fc8a0d4df4 100644
--- a/src/util/simple_mtx.h
+++ b/src/util/simple_mtx.h
@@ -25,6 +25,7 @@
#define _SIMPLE_MTX_H
#include "util/futex.h"
+#include "util/macros.h"
#include "c11/threads.h"