Skip to content

Commit

Permalink
Tokenizer::simplifyTypedef: 'tokAt(offset)=>tokOffset': work in progr…
Browse files Browse the repository at this point in the history
…ess..
  • Loading branch information
Edoardo Prezioso committed Jan 30, 2012
1 parent 7c596a2 commit 67d095a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/tokenize.cpp
Expand Up @@ -1324,12 +1324,12 @@ void Tokenizer::simplifyTypedef()
}

// pointer to class member
else if (Token::Match(tok->tokAt(offset), "( %type% :: * %type% ) ;")) {
namespaceStart = tok->tokAt(offset + 1);
namespaceEnd = tok->tokAt(offset + 2);
else if (Token::Match(tokOffset, "( %type% :: * %type% ) ;")) {
namespaceStart = tokOffset->next();
namespaceEnd = tokOffset->tokAt(2);
ptrMember = true;
typeName = tok->tokAt(offset + 4);
tok = tok->tokAt(offset + 6);
typeName = tokOffset->tokAt(4);
tok = tokOffset->tokAt(6);
}

// unhandled typedef, skip it and continue
Expand Down

0 comments on commit 67d095a

Please sign in to comment.