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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2017-08-21 00:12:59 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2017-08-21 00:15:43 +0300
commitfc890cdae254b68edad9306d18ab485db328dca7 (patch)
tree2d6bfd62df7bdc9c65fbe0f64733db54044eeae3 /source/gameengine
parent47d1f67eab9bffa53fb8f498b1478094f0039f3a (diff)
Fix Windows build error after recent Python changes in a10a7f42.
Diffstat (limited to 'source/gameengine')
-rw-r--r--source/gameengine/Expressions/EXP_PyObjectPlus.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/gameengine/Expressions/EXP_PyObjectPlus.h b/source/gameengine/Expressions/EXP_PyObjectPlus.h
index 32dc79cf6eb..504d79f7cbb 100644
--- a/source/gameengine/Expressions/EXP_PyObjectPlus.h
+++ b/source/gameengine/Expressions/EXP_PyObjectPlus.h
@@ -44,7 +44,8 @@
#include "STR_String.h"
#include "MT_Vector3.h"
#include "SG_QList.h"
-#include <stddef.h>
+#include <cstddef>
+#include <cstdint>
#ifdef WITH_PYTHON
#ifdef USE_MATHUTILS