diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/ir/context.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ir/context.rs b/src/ir/context.rs index a91d5224..aa03b209 100644 --- a/src/ir/context.rs +++ b/src/ir/context.rs @@ -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() { |