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:
Diffstat (limited to 'source/blender/depsgraph/intern/depsgraph.cc')
-rw-r--r--source/blender/depsgraph/intern/depsgraph.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph.cc b/source/blender/depsgraph/intern/depsgraph.cc
index a19a2958f28..2ce8f1aa071 100644
--- a/source/blender/depsgraph/intern/depsgraph.cc
+++ b/source/blender/depsgraph/intern/depsgraph.cc
@@ -30,24 +30,24 @@
#include "MEM_guardedalloc.h"
-#include "BLI_utildefines.h"
#include "BLI_console.h"
-#include "BLI_hash.h"
#include "BLI_ghash.h"
+#include "BLI_hash.h"
+#include "BLI_utildefines.h"
extern "C" {
-#include "BKE_scene.h"
#include "BKE_global.h"
#include "BKE_idcode.h"
+#include "BKE_scene.h"
}
#include "DEG_depsgraph.h"
#include "DEG_depsgraph_debug.h"
-#include "intern/depsgraph_update.h"
#include "intern/depsgraph_physics.h"
-#include "intern/depsgraph_relation.h"
#include "intern/depsgraph_registry.h"
+#include "intern/depsgraph_relation.h"
+#include "intern/depsgraph_update.h"
#include "intern/eval/deg_eval_copy_on_write.h"