Skip to content

Commit 678c249

Browse files
authored
Rollup merge of #130221 - vetleras:pub_search_path_new, r=chenyukang
Make SearchPath::new public I'm writing a tool that uses `rustc_interface`, and would like to construct `SearchPath` with its `new` method. As all three fields in `SearchPath` are public anyway, the proposed change should not change the privacy or encapsulation of the struct.
2 parents 66727ea + 9566163 commit 678c249

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_session/src/search_paths.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ impl SearchPath {
9696
Self::new(PathKind::All, make_target_lib_path(sysroot, triple))
9797
}
9898

99-
fn new(kind: PathKind, dir: PathBuf) -> Self {
99+
pub fn new(kind: PathKind, dir: PathBuf) -> Self {
100100
// Get the files within the directory.
101101
let files = match std::fs::read_dir(&dir) {
102102
Ok(files) => files

0 commit comments

Comments
 (0)