uninitvar: made ValueFlow check experimental
This commit is contained in:
parent
df19d2ba5b
commit
ce6cc5416a
|
@ -1200,6 +1200,10 @@ void CheckUninitVar::uninitStructMemberError(const Token *tok, const std::string
|
|||
|
||||
void CheckUninitVar::valueFlowUninit()
|
||||
{
|
||||
// FIXME: #8036, #8041
|
||||
if (!_settings->experimental)
|
||||
return;
|
||||
|
||||
const SymbolDatabase *symbolDatabase = _tokenizer->getSymbolDatabase();
|
||||
std::list<Scope>::const_iterator scope;
|
||||
|
||||
|
|
Loading…
Reference in New Issue