tokenizer: activated the handling of #file and #endfile

This commit is contained in:
Daniel Marjamäki 2009-01-19 17:49:44 +00:00
parent af87fececa
commit e90857ce0d
1 changed files with 2 additions and 2 deletions

View File

@ -318,8 +318,8 @@ void Tokenizer::tokenizeCode(std::istream &code, unsigned int FileIndex)
CurrentToken.clear(); CurrentToken.clear();
continue; continue;
} }
// TODO, remove false && to take this into use
if (false && ch == '#' && CurrentToken.empty()) if (ch == '#' && CurrentToken.empty())
{ {
std::string line("#"); std::string line("#");
{ {