Core: MSC compile fix with GDAL

git-svn-id: svn://ultimatepp.org/upp/trunk@10907 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2017-03-06 17:44:24 +00:00
parent 973054a6c0
commit dea8da24bb
2 changed files with 6 additions and 3 deletions

View file

@ -45,6 +45,12 @@
#error This version of U++ REQUIRES C++11
#endif
#ifdef _MSC_VER
#ifndef _CPPRTTI
#error RTTI must be enabled !!!
#endif //_CPPRTTI
#endif
#include <typeinfo>
#include <stddef.h>
#include <math.h>

View file

@ -116,9 +116,6 @@
#ifdef _MSC_VER
#define COMPILER_MSC 1
#ifndef _CPPRTTI
#error RTTI must be enabled !!!
#endif //_CPPRTTI
#if _MSC_VER <= 1300
#error MSC 6.0 not supported anymore
#endif