Failed to build on Ubuntu until I added these cstring includes.

Xcode and Visual Studio are building fine though!
This commit is contained in:
Stephen Gowen 2017-12-08 16:20:21 -05:00
parent dfd5409922
commit 89ad68c27a
3 changed files with 5 additions and 0 deletions

View File

@ -32,6 +32,7 @@
#include <fstream>
#include <assert.h>
#include <cstring>
namespace Spine
{

View File

@ -78,6 +78,8 @@
#include <spine/Event.h>
#include <spine/Vertices.h>
#include <cstring>
namespace Spine
{
const int SkeletonBinary::BONE_ROTATE = 0;

View File

@ -79,6 +79,8 @@
#include <spine/Event.h>
#include <spine/Vertices.h>
#include <cstring>
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32) && !defined(__CYGWIN__)
#define strdup _strdup
#endif