about summary refs log tree commit diff
path: root/compiler/rustc_session/src/parse.rs
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2023-11-28 16:30:57 +1100
committerNicholas Nethercote <n.nethercote@gmail.com>2023-12-01 08:00:53 +1100
commit5f11d19be568e322b9c67b518638ffad9264624f (patch)
tree17952de9ae1a798e0ed4ed1416a9d6433e803c85 /compiler/rustc_session/src/parse.rs
parentb6d0493388dbfca802c30ed738068b6397cd850b (diff)
downloadrust-5f11d19be568e322b9c67b518638ffad9264624f.tar.gz
rust-5f11d19be568e322b9c67b518638ffad9264624f.zip
Reduce `pub` exposure.
Diffstat (limited to 'compiler/rustc_session/src/parse.rs')
-rw-r--r--compiler/rustc_session/src/parse.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_session/src/parse.rs b/compiler/rustc_session/src/parse.rs
index 4d20d6d4187..f7b33cb598b 100644
--- a/compiler/rustc_session/src/parse.rs
+++ b/compiler/rustc_session/src/parse.rs
@@ -214,7 +214,7 @@ pub struct ParseSess {
     pub assume_incomplete_release: bool,
     /// Spans passed to `proc_macro::quote_span`. Each span has a numerical
     /// identifier represented by its position in the vector.
-    pub proc_macro_quoted_spans: AppendOnlyVec<Span>,
+    proc_macro_quoted_spans: AppendOnlyVec<Span>,
     /// Used to generate new `AttrId`s. Every `AttrId` is unique.
     pub attr_id_generator: AttrIdGenerator,
 }