Workaround isspace problem
git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@259 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
@@ -62,6 +62,16 @@
|
||||
#include <fstream>
|
||||
#include <memory>
|
||||
|
||||
#if defined(OM_CC_MIPS)
|
||||
# include <ctype.h>
|
||||
/// \bug Workaround for STLPORT 4.6: isspace seems not to be in namespace std!
|
||||
#elif defined(_STLPORT_VERSION) && (_STLPORT_VERSION==0x460)
|
||||
# include <cctype>
|
||||
#else
|
||||
# include <cctype>
|
||||
using std::isspace;
|
||||
#endif
|
||||
|
||||
#ifndef WIN32
|
||||
#include <string.h>
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user