is booelan

This commit is contained in:
Sébastien Debrard 2011-01-22 14:06:02 +01:00
parent 8d97080ab8
commit 000e03c85d
1 changed files with 4 additions and 0 deletions

View File

@ -5719,6 +5719,10 @@ void Tokenizer::simplifyStdType()
tok->isUnsigned(isUnsigned);
tok->isSigned(!isUnsigned);
}
if (Token::Match(tok, "bool"))
{
tok->isBoolean(true);
}
if (Token::Match(tok, "__int8"))
tok->str("char");