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/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-08-01 12:14:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-08-01 12:17:22 +0300
commiteb0902243e2cfe30e5ea302658dcb8ddf5fb1504 (patch)
tree6aff328af4f09d5ce7627c7cf8fcab950d02beee /source
parentb5b0804c5a3bc20e39bddeb052f5f671c8dbc497 (diff)
Linux: resolve issue compiling on mint 18.3
size_t wasn't declared. While this could be resolved differently, convention is to include BKE after BLI.
Diffstat (limited to 'source')
-rw-r--r--source/blender/depsgraph/intern/eval/deg_eval_flush.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/depsgraph/intern/eval/deg_eval_flush.cc b/source/blender/depsgraph/intern/eval/deg_eval_flush.cc
index b03da157e7c..2479373b687 100644
--- a/source/blender/depsgraph/intern/eval/deg_eval_flush.cc
+++ b/source/blender/depsgraph/intern/eval/deg_eval_flush.cc
@@ -29,15 +29,15 @@
#include <deque>
#include <cmath>
-#include "BKE_object.h"
-#include "BKE_scene.h"
-
#include "BLI_utildefines.h"
#include "BLI_listbase.h"
#include "BLI_math_vector.h"
#include "BLI_task.h"
#include "BLI_ghash.h"
+#include "BKE_object.h"
+#include "BKE_scene.h"
+
extern "C" {
#include "DNA_object_types.h"
#include "DNA_scene_types.h"