diff options
author | follower <follower@rancidbacon.com> | 2019-08-02 04:19:51 +1200 |
---|---|---|
committer | follower <follower@rancidbacon.com> | 2019-08-02 04:19:51 +1200 |
commit | 84698dfa3d6df46cc150e192e62829ed6006196f (patch) | |
tree | 430b08b8ed52060ddbef42cf3c90d6223676bbed | |
parent | 3a6102a6f716904bb158819146e3fed7590b8106 (diff) |
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'?
-rw-r--r-- | thirdparty/assimp/include/assimp/scene.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/thirdparty/assimp/include/assimp/scene.h b/thirdparty/assimp/include/assimp/scene.h index e973f6c5b9..df5d6f3b5e 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 <cstdlib> #ifdef __cplusplus extern "C" { |