Skip to content

Commit c9dd930

Browse files
authored
Rollup merge of rust-lang#63381 - matklad:reduce-visibility, r=Centril
reduce visibility r? @petrochenkov
2 parents 432b55e + 06701a8 commit c9dd930

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libsyntax/source_map.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,12 +125,12 @@ impl StableSourceFileId {
125125

126126
#[derive(Default)]
127127
pub(super) struct SourceMapFiles {
128-
pub(super) source_files: Vec<Lrc<SourceFile>>,
128+
source_files: Vec<Lrc<SourceFile>>,
129129
stable_id_to_source_file: FxHashMap<StableSourceFileId, Lrc<SourceFile>>
130130
}
131131

132132
pub struct SourceMap {
133-
pub(super) files: Lock<SourceMapFiles>,
133+
files: Lock<SourceMapFiles>,
134134
file_loader: Box<dyn FileLoader + Sync + Send>,
135135
// This is used to apply the file path remapping as specified via
136136
// --remap-path-prefix to all SourceFiles allocated within this SourceMap.

0 commit comments

Comments
 (0)