mirror of
https://github.com/dlang/phobos.git
synced 2025-04-27 13:40:20 +03:00
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:
parent
0e1afe82cb
commit
76e1cfd2e9
8 changed files with 21 additions and 20 deletions
|
@ -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)() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue