diff options
author | Christian Poveda <christian.poveda@ferrous-systems.com> | 2022-08-16 11:39:23 -0500 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2022-08-18 18:08:37 +0200 |
commit | ebb1ce98c6e92ce2384a5867bdcfeb933ed12433 (patch) | |
tree | b486817a1f45e096b8cea22cda0ae32c54b4d3ac | |
parent | 89269026daae91c29aa555ffd3fe978741f88032 (diff) |
rustfmt
-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() { |