diff options
author | Andreas Boll <[email protected]> | 2014-09-12 10:11:24 +0200 |
---|---|---|
committer | Andreas Boll <[email protected]> | 2014-09-12 15:55:12 +0200 |
commit | 2a13ff954d3d8cea73bbcf728edffa867828cb78 (patch) | |
tree | c9129b4f79721c6f3697f4faa6e154c3580abde4 /src/gallium/auxiliary | |
parent | 802018df5f4c193f1c642a187ecf3c429e2c2ada (diff) |
gallium/util: add missing u_debug include
Needed for assert.
Fixes build on BE archs with -Werror=implicit-function-declaration.
In file included from
../../../../../src/gallium/auxiliary/draw/draw_fs.c:30:0:
../../../../../src/gallium/auxiliary/util/u_math.h: In function
'util_memcpy_cpu_to_le32':
../../../../../src/gallium/auxiliary/util/u_math.h:810:4: error:
implicit declaration of function 'assert'
[-Werror=implicit-function-declaration]
assert(n % 4 == 0);
^
Cc: "10.3" <[email protected]>
Signed-off-by: Andreas Boll <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r-- | src/gallium/auxiliary/util/u_math.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_math.h b/src/gallium/auxiliary/util/u_math.h index 25bcfb57d8e..39bd40fa153 100644 --- a/src/gallium/auxiliary/util/u_math.h +++ b/src/gallium/auxiliary/util/u_math.h @@ -40,6 +40,7 @@ #include "pipe/p_compiler.h" +#include "util/u_debug.h" #ifdef __cplusplus |