cleanup: removed unused variables
This commit is contained in:
parent
6ca4b008d0
commit
248b6aa159
|
@ -78,9 +78,6 @@ std::string Preprocessor::read(std::istream &istr, const std::string &filename,
|
||||||
// need space.. #if( => #if (
|
// need space.. #if( => #if (
|
||||||
bool needSpace = false;
|
bool needSpace = false;
|
||||||
|
|
||||||
// For the error report
|
|
||||||
int lineno = 1;
|
|
||||||
|
|
||||||
// handling <backspace><newline>
|
// handling <backspace><newline>
|
||||||
// when this is encountered the <backspace><newline> will be "skipped".
|
// when this is encountered the <backspace><newline> will be "skipped".
|
||||||
// on the next <newline>, extra newlines will be added
|
// on the next <newline>, extra newlines will be added
|
||||||
|
@ -89,9 +86,6 @@ std::string Preprocessor::read(std::istream &istr, const std::string &filename,
|
||||||
std::ostringstream code;
|
std::ostringstream code;
|
||||||
for (unsigned char ch = readChar(istr); istr.good(); ch = readChar(istr))
|
for (unsigned char ch = readChar(istr); istr.good(); ch = readChar(istr))
|
||||||
{
|
{
|
||||||
if (ch == '\n')
|
|
||||||
++lineno;
|
|
||||||
|
|
||||||
// Replace assorted special chars with spaces..
|
// Replace assorted special chars with spaces..
|
||||||
if (((ch & 0x80) == 0) && (ch != '\n') && (std::isspace(ch) || std::iscntrl(ch)))
|
if (((ch & 0x80) == 0) && (ch != '\n') && (std::isspace(ch) || std::iscntrl(ch)))
|
||||||
ch = ' ';
|
ch = ' ';
|
||||||
|
|
|
@ -633,7 +633,6 @@ void Tokenizer::simplifyTypedef()
|
||||||
int offset = 1;
|
int offset = 1;
|
||||||
bool functionPtr = false;
|
bool functionPtr = false;
|
||||||
bool functionRef = false;
|
bool functionRef = false;
|
||||||
bool hasTemplate = false;
|
|
||||||
|
|
||||||
if (Token::Match(tok->next(), "::") ||
|
if (Token::Match(tok->next(), "::") ||
|
||||||
Token::Match(tok->next(), "%type%"))
|
Token::Match(tok->next(), "%type%"))
|
||||||
|
@ -664,7 +663,6 @@ void Tokenizer::simplifyTypedef()
|
||||||
{
|
{
|
||||||
int level = 1;
|
int level = 1;
|
||||||
int paren = 0;
|
int paren = 0;
|
||||||
hasTemplate = true;
|
|
||||||
typeEnd = tok->tokAt(offset + 1);
|
typeEnd = tok->tokAt(offset + 1);
|
||||||
for (; typeEnd ; typeEnd = typeEnd->next())
|
for (; typeEnd ; typeEnd = typeEnd->next())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue