diff options
Diffstat (limited to 'boot/lexer.ll')
| -rw-r--r-- | boot/lexer.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/lexer.ll b/boot/lexer.ll index fac70f0..4f9fed7 100644 --- a/boot/lexer.ll +++ b/boot/lexer.ll @@ -309,6 +309,6 @@ of { std::stringstream ss; ss << "Illegal character 0x" << std::hex << static_cast<unsigned int>(yytext[0]); - driver.add_error<syntax_error>(ss.str(), driver.input_file, this->location); + driver.add_error<syntax_error>(ss.str(), this->location); } %% |
