fix: skip whitespaces without newline

This commit is contained in:
ToruNiina
2019-08-26 18:16:09 +09:00
parent e332e018db
commit 7a1b5bd64e
2 changed files with 11 additions and 0 deletions

View File

@@ -1751,6 +1751,7 @@ parse_ml_table(location<Container>& loc)
using skip_line = repeat<
sequence<maybe<lex_ws>, maybe<lex_comment>, lex_newline>, at_least<1>>;
skip_line::invoke(loc);
lex_ws::invoke(loc);
table_type tab;
while(loc.iter() != loc.end())