Skip to content

Commit 35393b0

Browse files
Update vf_analyzers.cpp
1 parent 169b136 commit 35393b0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/vf_analyzers.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1050,8 +1050,8 @@ struct MultiValueFlowAnalyzer : ValueFlowAnalyzer {
10501050
return false;
10511051
return values.count(tok->varId()) > 0 ||
10521052
std::any_of(values.begin(), values.end(), [&](const std::pair<nonneg int, ValueFlow::Value>& p) {
1053-
return p.second.isUninitValue() && p.second.tokvalue->varId() == tok->varId();
1054-
});
1053+
return p.second.isUninitValue() && p.second.tokvalue->varId() == tok->varId();
1054+
});
10551055
}
10561056

10571057
ProgramState getProgramState() const override {

0 commit comments

Comments
 (0)