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:
authorBastien Montagne <montagne29@wanadoo.fr>2019-01-25 19:31:32 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-01-25 19:46:09 +0300
commit2a7b74c23711a15c4e1946c699161d420a4bee7b (patch)
treed244aa38fc495d53252f9ecb9baaa7bd5de00903 /source/blender/blenloader/intern/writefile.c
parent693721cc7e7d617eeb1c2198a6628bb14f731d6b (diff)
Cleanup: BLO: move validate code into own header.
Does not make sense to keep that with BLO_writefile.h, this can also be used by read code, and some other parts of Blender (like ed_undo.c currently)...
Diffstat (limited to 'source/blender/blenloader/intern/writefile.c')
-rw-r--r--source/blender/blenloader/intern/writefile.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/blenloader/intern/writefile.c b/source/blender/blenloader/intern/writefile.c
index fcd19c2ca0f..2e621ab9330 100644
--- a/source/blender/blenloader/intern/writefile.c
+++ b/source/blender/blenloader/intern/writefile.c
@@ -188,10 +188,11 @@
#endif
-#include "BLO_writefile.h"
+#include "BLO_blend_defs.h"
+#include "BLO_blend_validate.h"
#include "BLO_readfile.h"
#include "BLO_undofile.h"
-#include "BLO_blend_defs.h"
+#include "BLO_writefile.h"
#include "readfile.h"