Reverted isAsciiWhite to isWhite.

This commit is contained in:
jmdavis 2011-06-22 19:20:15 -07:00
parent 34bce538ce
commit 25b755a843
10 changed files with 28 additions and 28 deletions

View file

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