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: ...@@ -581,11 +581,9 @@ public:
consumeWhile([](char chr) { consumeWhile([](char chr) {
return ( return (
chr == ' ' || chr == ' ' ||
chr == '\f' ||
chr == '\n' || chr == '\n' ||
chr == '\r' || chr == '\r' ||
chr == '\t' || chr == '\t'
chr == '\v'
); );
}); });
} }
......
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