Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-10-20 17:50:24 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-10-20 17:50:24 +0400
commit2bd9519e39f7c383005fd531f4c7dd92cce246ad (patch)
tree9c35ed5121599f4f57368baa63f15b0153b7bb16 /source/blender/blenlib/BLI_ghash.h
parenta828845f27557242d59eb881ca2d5a43c8915636 (diff)
BLI_ghash.h was including BLI_blenlib.h, remove from ghash header and include in each file
Diffstat (limited to 'source/blender/blenlib/BLI_ghash.h')
-rw-r--r--source/blender/blenlib/BLI_ghash.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/source/blender/blenlib/BLI_ghash.h b/source/blender/blenlib/BLI_ghash.h
index e4afc6ad79b..e4ef834822f 100644
--- a/source/blender/blenlib/BLI_ghash.h
+++ b/source/blender/blenlib/BLI_ghash.h
@@ -39,13 +39,6 @@
extern "C" {
#endif
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-
-#include "BLI_mempool.h"
-#include "BLI_blenlib.h"
-
typedef unsigned int (*GHashHashFP) (const void *key);
typedef int (*GHashCmpFP) (const void *a, const void *b);
typedef void (*GHashKeyFreeFP) (void *key);