diff options
| author | Taiki Endo <te316e89@gmail.com> | 2019-10-17 17:45:18 +0900 |
|---|---|---|
| committer | gnzlbg <gnzlbg@users.noreply.github.com> | 2019-10-26 18:46:57 +0200 |
| commit | 5c1430079bf8e360ab93d0bab75e8aca9ec1eb90 (patch) | |
| tree | 87cfbf020c510963c304a8189c05b1970ef90746 /library/stdarch/crates/assert-instr-macro/src | |
| parent | 66afa48445b81e8cbe733cbb5d860722589d7e85 (diff) | |
| download | rust-5c1430079bf8e360ab93d0bab75e8aca9ec1eb90.tar.gz rust-5c1430079bf8e360ab93d0bab75e8aca9ec1eb90.zip | |
Format with rustfmt
Diffstat (limited to 'library/stdarch/crates/assert-instr-macro/src')
| -rw-r--r-- | library/stdarch/crates/assert-instr-macro/src/lib.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/library/stdarch/crates/assert-instr-macro/src/lib.rs b/library/stdarch/crates/assert-instr-macro/src/lib.rs index dfa73ce5252..8198aebc209 100644 --- a/library/stdarch/crates/assert-instr-macro/src/lib.rs +++ b/library/stdarch/crates/assert-instr-macro/src/lib.rs @@ -147,7 +147,10 @@ pub fn assert_instr( } }; // why? necessary now to get tests to work? - let tokens: TokenStream = tokens.to_string().parse().expect("cannot parse tokenstream"); + let tokens: TokenStream = tokens + .to_string() + .parse() + .expect("cannot parse tokenstream"); let tokens: TokenStream = quote! { #item |
