adding a line after early return block

This commit is contained in:
kevin zhao
2025-11-10 18:59:24 -08:00
parent 230cb2e3e2
commit a2890e2ca7

View File

@@ -36,6 +36,7 @@ impl Policy {
},
None => return Evaluation::NoMatch,
};
let mut matched_rules: Vec<RuleMatch> = Vec::new();
let mut strictest_decision: Option<Decision> = None;
for rule in rules {