# fix compile error with gcc due to <limits.h> not being included

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@953 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
pull/1/head
aramis_acg 2011-04-20 20:08:55 +00:00
parent 1decdf999c
commit 94f8e5fdb0
2 changed files with 1 additions and 2 deletions

View File

@ -116,6 +116,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <numeric> #include <numeric>
#include <new> #include <new>
#include <cstdio> #include <cstdio>
#include <limits.h>
// Boost headers // Boost headers
#include <boost/pointer_cast.hpp> #include <boost/pointer_cast.hpp>

View File

@ -47,8 +47,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "ProcessHelper.h" #include "ProcessHelper.h"
#include "DeboneProcess.h" #include "DeboneProcess.h"
#include <limits>
using namespace Assimp; using namespace Assimp;