Fix maximal munch parsing issue
This commit is contained in:
parent
e84925d5e4
commit
1b57248fc8
2 changed files with 6 additions and 3 deletions
|
|
@ -148,7 +148,8 @@ namespace
|
|||
{
|
||||
auto iter = detail::find_closing_bracket(stream);
|
||||
scope += detail::to_string(stream, iter);
|
||||
detail::skip(stream, ">");
|
||||
if (!detail::skip_if(stream, ">>"))
|
||||
detail::skip(stream, ">");
|
||||
scope += ">";
|
||||
}
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue