[Bf-blender-cvs] [fc890cdae25] master: Fix Windows build error after recent Python changes in a10a7f42.

Brecht Van Lommel noreply at git.blender.org
Mon Aug 21 01:19:02 CEST 2017


Commit: fc890cdae254b68edad9306d18ab485db328dca7
Author: Brecht Van Lommel
Date:   Sun Aug 20 23:12:59 2017 +0200
Branches: master
https://developer.blender.org/rBfc890cdae254b68edad9306d18ab485db328dca7

Fix Windows build error after recent Python changes in a10a7f42.

===================================================================

M	source/gameengine/Expressions/EXP_PyObjectPlus.h

===================================================================

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



More information about the Bf-blender-cvs mailing list