Merge branch 'master' into allow-comment-before-comma

This commit is contained in:
ToruNiina
2020-09-19 18:10:45 +09:00
15 changed files with 270 additions and 92 deletions

View File

@@ -125,6 +125,7 @@ parse_integer(location& loc)
const auto second = std::next(first);
if(second == loc.end()) // the token is just zero.
{
loc.advance();
return ok(std::make_pair(0, region(loc, first, second)));
}