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/BLO_writefile.h
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/BLO_writefile.h')
-rw-r--r--source/blender/blenloader/BLO_writefile.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/blender/blenloader/BLO_writefile.h b/source/blender/blenloader/BLO_writefile.h
index d615514f081..f6d0be6f5f0 100644
--- a/source/blender/blenloader/BLO_writefile.h
+++ b/source/blender/blenloader/BLO_writefile.h
@@ -44,6 +44,4 @@ extern bool BLO_write_file(
extern bool BLO_write_file_mem(
struct Main *mainvar, struct MemFile *compare, struct MemFile *current, int write_flags);
-bool BLO_main_validate_libraries(struct Main *bmain, struct ReportList *reports);
-
#endif