diff options
author | Brian Paul <[email protected]> | 2014-03-18 11:55:50 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2014-03-18 13:28:17 -0600 |
commit | f4435da940327cdb2c3c2bafd6e6e40f6f545639 (patch) | |
tree | 9eb5affb5da58e569f7442649f4ca84e4bcb93a8 /src | |
parent | f74cf5f80ea6ea16abb38c28c2b4826b8559017b (diff) |
mesa: include stdbool.h in register_allocate.h to fix build
https://bugs.freedesktop.org/show_bug.cgi?id=76331
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/program/register_allocate.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/program/register_allocate.h b/src/mesa/program/register_allocate.h index 1dd28bee3af..337dcf7099b 100644 --- a/src/mesa/program/register_allocate.h +++ b/src/mesa/program/register_allocate.h @@ -25,6 +25,8 @@ * */ +#include <stdbool.h> + struct ra_class; struct ra_regs; |