You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ((settings.vfOptions.maxForwardBranches > 0) && (++branchCount > settings.vfOptions.maxForwardBranches)) {
694
+
if ((settings->vfOptions.maxForwardBranches > 0) && (++branchCount > settings->vfOptions.maxForwardBranches)) {
694
695
// TODO: should be logged on function-level instead of file-level
695
-
if (settings.severity.isEnabled(Severity::information)) {
696
+
if (settings->severity.isEnabled(Severity::information)) {
696
697
reportError(Severity::information, "normalCheckLevelMaxBranches", "Limiting analysis of branches. Use --check-level=exhaustive to analyze all branches.");
697
698
}
698
699
returnBreak(Analyzer::Terminate::Bail);
@@ -802,8 +803,8 @@ namespace {
802
803
// Carry the then-fork forward, unless a limit is hit - then only the linear main
0 commit comments