Cleanup: Replaced "\n" with '\n'

This commit is contained in:
Paul Beckingham 2016-04-23 13:30:54 -04:00
parent 9e6ee03354
commit 49715320ef
20 changed files with 151 additions and 151 deletions

View file

@ -59,7 +59,7 @@ int main (int, char**)
tokens.clear ();
while (l3.token (token, type))
{
std::cout << "# «" << token << "» " << Lexer::typeName (type) << "\n";
std::cout << "# «" << token << "» " << Lexer::typeName (type) << '\n';
tokens.push_back (std::pair <std::string, Lexer::Type> (token, type));
}