Workaround isspace problem

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@259 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2010-01-07 16:34:44 +00:00
parent 345dfd75e6
commit 658c8ec12f

View File

@@ -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