git-svn-id: https://profuse.googlecode.com/svn/branches/v2@160 aa027e90-d47c-11dd-86d7-074df07e0730

This commit is contained in:
ksherlock
2009-12-12 22:16:37 +00:00
parent e8c1af2d2c
commit c2518dbccc
+2 -2
View File
@@ -9,7 +9,7 @@
#include <algorithm>
#include <cstring>
#include <cctype.h>
#include <cctype>
#include <memory>
using namespace LittleEndian;
@@ -74,7 +74,7 @@ unsigned Entry::ValidName(const char *cp, unsigned maxLength)
break;
default:
if (!std::isascii(c)) return 0;
if (!::isascii(c)) return 0;
if (!std::isgraph(c)) return 0;
}
}