From 84698dfa3d6df46cc150e192e62829ed6006196f Mon Sep 17 00:00:00 2001 From: follower Date: Fri, 2 Aug 2019 04:19:51 +1200 Subject: [PATCH] Fix error when building assimp on older Mac OS X version. Prevents this error when building with Mac OS X 10.9 SDK: error: no member named 'atoi' in namespace 'std'; did you mean simply 'atoi'? --- thirdparty/assimp/include/assimp/scene.h | 1 + 1 file changed, 1 insertion(+) diff --git a/thirdparty/assimp/include/assimp/scene.h b/thirdparty/assimp/include/assimp/scene.h index e973f6c5b9d..df5d6f3b5e0 100644 --- a/thirdparty/assimp/include/assimp/scene.h +++ b/thirdparty/assimp/include/assimp/scene.h @@ -56,6 +56,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include "material.h" #include "anim.h" #include "metadata.h" +#include #ifdef __cplusplus extern "C" {