Fixed a vs compiler warning. Ticket: #1901

This commit is contained in:
Daniel Marjamäki 2010-07-27 17:48:22 +02:00
parent 9a9266b042
commit 2fd2ab1712
1 changed files with 1 additions and 1 deletions

View File

@ -345,7 +345,7 @@ void Tokenizer::createTokens(std::istream &code)
else if (ch=='&' && CurrentToken.empty() && code.peek() == '&')
{
// &&
ch = code.get();
ch = (char)code.get();
addtoken("&&", lineno, FileIndex, true);
continue;
}