diff options
| author | Trevor Gross <tmgross@umich.edu> | 2025-04-19 22:39:00 +0000 |
|---|---|---|
| committer | Trevor Gross <t.gross35@gmail.com> | 2025-04-19 19:05:49 -0400 |
| commit | 8d70be87e6e8f88fdad0f469b894a3ec9a87d3ce (patch) | |
| tree | d69b92fcea2f1c85537f31c515204c02c13c94b3 /library/compiler-builtins/crates/util/src | |
| parent | 569b40209dd83af5decf494541cd96b749813973 (diff) | |
| download | rust-8d70be87e6e8f88fdad0f469b894a3ec9a87d3ce.tar.gz rust-8d70be87e6e8f88fdad0f469b894a3ec9a87d3ce.zip | |
Run `cargo fmt` on all projects
Apply the same formatting rules to both `libm` and `compiler-builtins`.
Diffstat (limited to 'library/compiler-builtins/crates/util/src')
| -rw-r--r-- | library/compiler-builtins/crates/util/src/main.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/library/compiler-builtins/crates/util/src/main.rs b/library/compiler-builtins/crates/util/src/main.rs index ef70ec9035b..e7057869996 100644 --- a/library/compiler-builtins/crates/util/src/main.rs +++ b/library/compiler-builtins/crates/util/src/main.rs @@ -221,7 +221,11 @@ macro_rules! impl_parse_tuple_via_rug { impl ParseTuple for ($ty, $ty, $ty) { fn parse(input: &[&str]) -> Self { assert_eq!(input.len(), 3, "expected three arguments, got {input:?}"); - (parse_rug(input, 0), parse_rug(input, 1), parse_rug(input, 2)) + ( + parse_rug(input, 0), + parse_rug(input, 1), + parse_rug(input, 2), + ) } } }; |
