projects
/
platform
/
upstream
/
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
76e05a0
..
ad1dae4
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" {