Replaced calls to std.ctype.isspace with std.ctype.isWhite.

In a few places, I replaced it with std.uni.isUniWhite, but for the most
part, I replaced it with std.ctype.isWhite.
This commit is contained in:
jmdavis 2011-06-12 14:34:48 -07:00
parent 0e1afe82cb
commit 76e1cfd2e9
8 changed files with 21 additions and 20 deletions

View file

@ -83,7 +83,7 @@ JSONValue parseJSON(T)(T json, int maxDepth = -1) if(isInputRange!T) {
}
void skipWhitespace() {
while(isspace(peekChar())) next = 0;
while(isWhite(peekChar())) next = 0;
}
dchar getChar(bool SkipWhitespace = false)() {