Code cleanup.

This commit is contained in:
Nicolas Le Cam 2009-01-21 22:07:22 +00:00
parent 1ef2c5caf5
commit f9191539a8
1 changed files with 0 additions and 16 deletions

View File

@ -144,22 +144,6 @@ std::string Preprocessor::read(std::istream &istr)
}
while (istr.good() && chNext != ch);
}
/*
// char constants..
else if (ch == '\'')
{
code << "\'";
ch = readChar(istr);
code << std::string(1, ch);
if (ch == '\\')
{
ch = readChar(istr);
code << std::string(1, ch);
}
ch = readChar(istr);
code << "\'";
}
*/
// <backspace><newline>..
else if (ch == '\\')
{