mirror of
https://github.com/ToruNiina/toml11.git
synced 2025-09-17 00:38:08 +08:00
fix: skip whitespaces without newline
This commit is contained in:
@@ -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())
|
||||
|
Reference in New Issue
Block a user