Commit 23f92989 authored by Erik Sjölund's avatar Erik Sjölund

adjust the set of white space characters to the set described by RFC 7159

parent b820678d
......@@ -581,11 +581,9 @@ public:
consumeWhile([](char chr) {
return (
chr == ' ' ||
chr == '\f' ||
chr == '\n' ||
chr == '\r' ||
chr == '\t' ||
chr == '\v'
chr == '\t'
);
});
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment