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:
authorMiika Hamalainen <blender@miikah.org>2012-03-12 11:21:22 +0400
committerMiika Hamalainen <blender@miikah.org>2012-03-12 11:21:22 +0400
commitea56a54747dde1aaa8aa2e89d04486870c05e815 (patch)
tree600f4396cc2e587b552a8d306009bf00dc994c12 /source/blender/blenlib/intern/BLI_heap.c
parentaedd4af57e5777dd32585560980f4661ec4d491d (diff)
Fix msvc compilation errors. (__func__ undeclared)
Diffstat (limited to 'source/blender/blenlib/intern/BLI_heap.c')
-rw-r--r--source/blender/blenlib/intern/BLI_heap.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenlib/intern/BLI_heap.c b/source/blender/blenlib/intern/BLI_heap.c
index 01a38cf123e..ea22ed0c4da 100644
--- a/source/blender/blenlib/intern/BLI_heap.c
+++ b/source/blender/blenlib/intern/BLI_heap.c
@@ -35,6 +35,7 @@
#include "MEM_guardedalloc.h"
#include "BLI_memarena.h"
#include "BLI_heap.h"
+#include "BLI_utildefines.h"
/***/