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/tests
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2018-11-07 18:06:36 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2018-11-07 22:58:53 +0300
commit1ff8be24ef8970f140865dfb118112ec08e7dfad (patch)
tree38905213208df3eee8a1c9452e5fb0b5976aceca /tests
parent4b2110fc86e59136efd7ea294453678e848b4b74 (diff)
Cleanup/Refactor: move Main stuff into BKE's new main.c file (and header).
We already had a BKE_main.h header, no reason not to put there Main-specific functions, BKE_library has already more than enough to handle with IDs and library management!
Diffstat (limited to 'tests')
-rw-r--r--tests/gtests/alembic/abc_export_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gtests/alembic/abc_export_test.cc b/tests/gtests/alembic/abc_export_test.cc
index 18716e53e31..ac7760d1541 100644
--- a/tests/gtests/alembic/abc_export_test.cc
+++ b/tests/gtests/alembic/abc_export_test.cc
@@ -6,7 +6,7 @@
extern "C" {
#include "BLI_utildefines.h"
-#include "BKE_library.h"
+#include "BKE_main.h"
#include "BLI_math.h"
#include "DNA_scene_types.h"
}