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:
authorCampbell Barton <ideasman42@gmail.com>2013-04-05 21:56:54 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-05 21:56:54 +0400
commit93ac968db3bc47e3520c662671cf68e86c0f2204 (patch)
tree46b37ba1fbf24c93c26ce6062bb4ee3841f9a3a9 /source/blender/compositor
parent5f49bab8bad9ecadcfecaec17268a4c75bcde762 (diff)
code cleanup: include order
Diffstat (limited to 'source/blender/compositor')
-rw-r--r--source/blender/compositor/intern/COM_WorkScheduler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/compositor/intern/COM_WorkScheduler.cpp b/source/blender/compositor/intern/COM_WorkScheduler.cpp
index 724abb59bcf..402fa28e210 100644
--- a/source/blender/compositor/intern/COM_WorkScheduler.cpp
+++ b/source/blender/compositor/intern/COM_WorkScheduler.cpp
@@ -23,8 +23,6 @@
#include <list>
#include <stdio.h>
-#include "BKE_global.h"
-
#include "COM_compositor.h"
#include "COM_WorkScheduler.h"
#include "COM_CPUDevice.h"
@@ -38,6 +36,8 @@
#include "PIL_time.h"
#include "BLI_threads.h"
+#include "BKE_global.h"
+
#if COM_CURRENT_THREADING_MODEL == COM_TM_NOTHREAD
# ifndef DEBUG /* test this so we dont get warnings in debug builds */
# warning COM_CURRENT_THREADING_MODEL COM_TM_NOTHREAD is activated. Use only for debugging.