projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
186579e
)
mesa: Include compiler.h in hash_table.h.
author
Vinson Lee
<vlee@freedesktop.org>
Wed, 14 Nov 2012 05:18:09 +0000
(21:18 -0800)
committer
Vinson Lee
<vlee@freedesktop.org>
Wed, 14 Nov 2012 05:19:50 +0000
(21:19 -0800)
Include the header for the inline symbol. MSVC does not have the inline
keyword for C.
Signed-off-by: Vinson Lee <vlee@freedesktop.org>
src/mesa/main/hash_table.h
patch
|
blob
|
history
diff --git
a/src/mesa/main/hash_table.h
b/src/mesa/main/hash_table.h
index 76e05a0856fbe7dc6f4765960121e5bdb52f9529..ad1dae478ed57b6120230dd513bc777adedc8a1c 100644
(file)
--- a/
src/mesa/main/hash_table.h
+++ b/
src/mesa/main/hash_table.h
@@
-25,11
+25,13
@@
*
*/
+#ifndef _HASH_TABLE_H
+#define _HASH_TABLE_H
+
#include <inttypes.h>
#include <stdbool.h>
-#ifndef _HASH_TABLE_H
-#define _HASH_TABLE_H
+#include "compiler.h"
#ifdef __cplusplus
extern "C" {