ExprEngine: Disable integerOverflow check
This commit is contained in:
parent
7ea8b69235
commit
f7a8075001
|
@ -1108,6 +1108,9 @@ void ExprEngine::runChecks(ErrorLogger *errorLogger, const Tokenizer *tokenizer,
|
|||
};
|
||||
|
||||
std::function<void(const Token *, const ExprEngine::Value &)> integerOverflow = [&](const Token *tok, const ExprEngine::Value &value) {
|
||||
// Disable this check.. it's very noisy
|
||||
return;
|
||||
|
||||
if (!tok->isArithmeticalOp() || !tok->valueType() || !tok->valueType()->isIntegral() || tok->valueType()->pointer > 0)
|
||||
return;
|
||||
|
||||
|
|
Loading…
Reference in New Issue