mirror of
https://github.com/dlang/phobos.git
synced 2025-04-27 13:40:20 +03:00
Reverted isAsciiWhite to isWhite.
This commit is contained in:
parent
34bce538ce
commit
25b755a843
10 changed files with 28 additions and 28 deletions
|
@ -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)() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue