Skip to content

Commit

Permalink
Rollup merge of rust-lang#63381 - matklad:reduce-visibility, r=Centril
Browse files Browse the repository at this point in the history
reduce visibility

r? @petrochenkov
  • Loading branch information
Centril authored Aug 8, 2019
2 parents 432b55e + 06701a8 commit c9dd930
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libsyntax/source_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,12 +125,12 @@ impl StableSourceFileId {

#[derive(Default)]
pub(super) struct SourceMapFiles {
pub(super) source_files: Vec<Lrc<SourceFile>>,
source_files: Vec<Lrc<SourceFile>>,
stable_id_to_source_file: FxHashMap<StableSourceFileId, Lrc<SourceFile>>
}

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

0 comments on commit c9dd930

Please sign in to comment.