diff options
| author | Pietro Albini <pietro@pietroalbini.org> | 2018-09-22 09:56:34 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-22 09:56:34 +0200 |
| commit | 5d8a27e4da31440470979e9a85f61fd2b72dc9f5 (patch) | |
| tree | f3d27d5634ade4e65be861b570aa47c67921642e | |
| parent | 7248b79082cbf699571bfae33f50b4669e28fa50 (diff) | |
| parent | adc2c04543b9bb18766688e55e23082b0d9ac66d (diff) | |
| download | rust-5d8a27e4da31440470979e9a85f61fd2b72dc9f5.tar.gz rust-5d8a27e4da31440470979e9a85f61fd2b72dc9f5.zip | |
Rollup merge of #54374 - SergioBenitez:pub-multispan, r=alexcrichton
Make 'proc_macro::MultiSpan' public. Oversight from #52896.
| -rw-r--r-- | src/libproc_macro/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libproc_macro/lib.rs b/src/libproc_macro/lib.rs index 1a0dde3ccd7..d885f9b406f 100644 --- a/src/libproc_macro/lib.rs +++ b/src/libproc_macro/lib.rs @@ -48,7 +48,7 @@ pub mod rustc; mod diagnostic; #[unstable(feature = "proc_macro_diagnostic", issue = "54140")] -pub use diagnostic::{Diagnostic, Level}; +pub use diagnostic::{Diagnostic, Level, MultiSpan}; use std::{ascii, fmt, iter}; use std::path::PathBuf; |
