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
path: root/source
diff options
context:
space:
mode:
authorJürgen Herrmann <shadowrom@me.com>2013-06-18 23:09:49 +0400
committerJürgen Herrmann <shadowrom@me.com>2013-06-18 23:09:49 +0400
commit3c722f037a7b2b8648a2e6708a6679249a116b44 (patch)
treedcefef848fe6d5273f65845dd5db9ac1081ea59c /source
parentf2abb213d2d9574d59b769459d71eb4bd9687aba (diff)
Fix for own mistake in r57555 :-(
Add include to autoexec.c instead of BLI_path_util.h Thanks Bastien Montagne for the hint.
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/autoexec.c1
-rw-r--r--source/blender/blenlib/BLI_path_util.h2
2 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/autoexec.c b/source/blender/blenkernel/intern/autoexec.c
index 48bebd34179..c27343bf80a 100644
--- a/source/blender/blenkernel/intern/autoexec.c
+++ b/source/blender/blenkernel/intern/autoexec.c
@@ -34,6 +34,7 @@
#include "BLI_utildefines.h"
#include "BLI_fnmatch.h"
+#include "BLI_string.h"
#include "BLI_path_util.h"
#include "BKE_autoexec.h" /* own include */
diff --git a/source/blender/blenlib/BLI_path_util.h b/source/blender/blenlib/BLI_path_util.h
index 6e6731b5117..e0a34e35acc 100644
--- a/source/blender/blenlib/BLI_path_util.h
+++ b/source/blender/blenlib/BLI_path_util.h
@@ -31,8 +31,6 @@
* \ingroup bli
*/
-#include "BLI_string.h"
-
#ifdef __cplusplus
extern "C" {
#endif