Implement while loops

This commit is contained in:
2024-12-28 14:33:35 +01:00
parent d46608b358
commit 20949c7829
7 changed files with 257 additions and 46 deletions

View File

@ -92,7 +92,7 @@ static void elna_parse_file (const char *filename)
{
for (const auto& error : driver.errors())
{
auto gcc_location = elna_gcc_location(&error->position);
auto gcc_location = elna::gcc::get_location(&error->position);
error_at(gcc_location, error->what().c_str());
}