astyle formatting

This commit is contained in:
Daniel Marjamäki 2012-03-25 11:51:59 +02:00
parent ca6a93816b
commit 1d95416840
2 changed files with 9 additions and 9 deletions

View File

@ -522,7 +522,7 @@ void CheckOther::checkSizeofForPointerSize()
{
const SymbolDatabase *symbolDatabase = _tokenizer->getSymbolDatabase();
if(!_settings->isEnabled("style"))
if (!_settings->isEnabled("style"))
return;
for (const Token *tok = _tokenizer->tokens(); tok; tok = tok->next()) {
@ -546,8 +546,8 @@ void CheckOther::checkSizeofForPointerSize()
variable = tok->tokAt(2);
tokVar = variable->tokAt(2)->nextArgument();
// The following tests can be inconclusive in case the variable in sizeof
// is constant string by intention
// The following tests can be inconclusive in case the variable in sizeof
// is constant string by intention
} else if (!_settings->inconclusive) {
continue;
@ -571,7 +571,7 @@ void CheckOther::checkSizeofForPointerSize()
if (variable2) {
var = symbolDatabase->getVariableFromVarId(variable2->varId());
if (!var || !var->isPointer()) {
variable2 = 0;
variable2 = 0;
}
}
@ -589,11 +589,11 @@ void CheckOther::checkSizeofForPointerSize()
// looks suspicious
// Do it for first variable
if (variable && (Token::Match(tokVar, "sizeof ( %varid% )", variable->varId()) ||
Token::Match(tokVar, "sizeof %varid%", variable->varId()))) {
Token::Match(tokVar, "sizeof %varid%", variable->varId()))) {
sizeofForPointerError(variable, variable->str());
// Then do it for second - TODO: Perhaps we should invert?
// Then do it for second - TODO: Perhaps we should invert?
} else if (variable2 && (Token::Match(tokVar, "sizeof ( %varid% )", variable2->varId()) ||
Token::Match(tokVar, "sizeof %varid%", variable2->varId()))) {
Token::Match(tokVar, "sizeof %varid%", variable2->varId()))) {
sizeofForPointerError(variable2, variable2->str());
}
}

View File

@ -383,7 +383,7 @@ int Token::multiCompare(const char *haystack, const char *needle)
bool emptyStringFound = false;
const char *needlePointer = needle;
for(;;) {
for (;;) {
if (*needlePointer == *haystack) {
if (*needlePointer == '\0')
return 1;