mesa: Include compiler.h in hash_table.h.
authorVinson Lee <vlee@freedesktop.org>
Wed, 14 Nov 2012 05:18:09 +0000 (21:18 -0800)
committerVinson 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

index 76e05a0856fbe7dc6f4765960121e5bdb52f9529..ad1dae478ed57b6120230dd513bc777adedc8a1c 100644 (file)
  *
  */
 
+#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" {