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:
authorKévin Dietrich <kevin.dietrich@mailoo.org>2021-12-23 10:01:43 +0300
committerKévin Dietrich <kevin.dietrich@mailoo.org>2021-12-23 10:01:43 +0300
commit710e279b193fb61aeb279e826fc479200a1ba580 (patch)
tree0f9e23e3b4301b8fc6418490cef3b9f76a45882b /source
parent41f3164e577e448aa240a2a30918bc9887cae21a (diff)
Fix missing type declaration compile error
rBbd3bd776c893 broke compilation here due to missing type declaration for basic types as the source file is not including this header. In any case, it is the responsibility of header files to include headers for types used by value in function parameters or struct definitions.
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/BKE_scene.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_scene.h b/source/blender/blenkernel/BKE_scene.h
index 77cf250471f..4792921fec7 100644
--- a/source/blender/blenkernel/BKE_scene.h
+++ b/source/blender/blenkernel/BKE_scene.h
@@ -22,6 +22,8 @@
* \ingroup bke
*/
+#include "BLI_sys_types.h"
+
#ifdef __cplusplus
extern "C" {
#endif