Skip to content

Commit

Permalink
rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
pvdrz authored and Aatif Syed committed Sep 22, 2022
1 parent b9a1dbc commit b4a2adb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ir/context.rs
Expand Up @@ -2440,7 +2440,8 @@ If you encounter an error missing from this list, please file an issue or a PR!"
let mut warnings = Vec::new();

for item in self.options().allowlisted_functions.unmatched_items() {
warnings.push(format!("unused option: --allowlist-function {}", item));
warnings
.push(format!("unused option: --allowlist-function {}", item));
}

for item in self.options().allowlisted_vars.unmatched_items() {
Expand Down

0 comments on commit b4a2adb

Please sign in to comment.