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

@ -13,7 +13,7 @@ int main (int argc, char** argv)
std::string token;
Lexer::Type type;
while (l.token (token, type))
std::cout << " token '" << token << "' " << Lexer::typeToString (type) << "\n";
std::cout << " token '" << token << "' " << Lexer::typeToString (type) << '\n';
}
}