code_compiler: Include character for TokenUnknown

This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2017-11-13 02:31:44 +01:00
parent 9aefa56214
commit a9f4fd9d47
+1 -1
View File
@@ -78,7 +78,7 @@ bool BlitzLLVM::Compiler::Compile(std::string in, std::string out) {
break;
case Lexer::Token::TokenUnknown:
default:
std::cout << "Unknown" << std::endl;
std::cout << "Unknown(" << tkn.second << ") ";
break;
}
}