aboutsummaryrefslogtreecommitdiff
path: root/src/wrapper.rs
diff options
context:
space:
mode:
authorDavid Tolnay <dtolnay@gmail.com>2019-01-19 21:00:11 -0800
committerDavid Tolnay <dtolnay@gmail.com>2019-01-19 21:00:11 -0800
commit471a7ed31ac3e52e638a99eebaf601da04ebc13b (patch)
tree113cdfff50d177ac8a872459de2fa6c459a703ef /src/wrapper.rs
parentc34356aaef1c613dd2b051a8838944037543e0c4 (diff)
downloadproc-macro2-471a7ed31ac3e52e638a99eebaf601da04ebc13b.tar.gz
Format with rustfmt 2018-12-10
Diffstat (limited to 'src/wrapper.rs')
-rw-r--r--src/wrapper.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/wrapper.rs b/src/wrapper.rs
index f2121be..11d1a3b 100644
--- a/src/wrapper.rs
+++ b/src/wrapper.rs
@@ -7,8 +7,8 @@ use std::panic::{self, PanicInfo};
use std::path::PathBuf;
use std::str::FromStr;
-use proc_macro;
use fallback;
+use proc_macro;
use {Delimiter, Punct, Spacing, TokenTree};
@@ -578,7 +578,9 @@ impl Group {
};
Group::Compiler(proc_macro::Group::new(delimiter, stream))
}
- TokenStream::Fallback(stream) => Group::Fallback(fallback::Group::new(delimiter, stream)),
+ TokenStream::Fallback(stream) => {
+ Group::Fallback(fallback::Group::new(delimiter, stream))
+ }
}
}