Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 9 pull requests #130237

Merged
merged 26 commits into from
Sep 11, 2024
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
736ab66
Don't suggest adding return type for closures with default return type
wafarm Aug 19, 2024
2ddcbca
Suggest the struct variant pattern syntax on usage of unit variant pa…
tunawasabi Aug 24, 2024
05043a3
add `git_merge_commit_email` into `GitConfig`
onur-ozkan Sep 9, 2024
dc9c5f2
implement `build_helper::git::get_closest_merge_commit`
onur-ozkan Sep 9, 2024
9aa823c
replace `get_closest_merge_base_commit` with `get_closest_merge_commit`
onur-ozkan Sep 9, 2024
12998c2
handle `GitConfig` for `tools/suggest-tests`
onur-ozkan Sep 9, 2024
35ce85e
handle `GitConfig` for `tools/compiletest`
onur-ozkan Sep 9, 2024
0a7f9e2
skip formatting if no files have been modified
onur-ozkan Sep 9, 2024
4cecf42
Report the `note` when specified in `diagnostic::on_unimplemented`
FedericoBruzzone Sep 8, 2024
8f81597
Map `WSAEDQUOT` to `ErrorKind::FilesystemQuotaExceeded`
GrigorenkoPV Sep 10, 2024
49b3df9
Map `ERROR_CANT_RESOLVE_FILENAME` to `ErrorKind::FilesystemLoop`
GrigorenkoPV Sep 10, 2024
4198594
Clarify docs for std::collections
root-goblin Sep 1, 2024
5f32717
document the new git logic in more detail
onur-ozkan Sep 10, 2024
6eddbb7
Fix false positive with `missing_docs` and `#[test]`
ogoffart Sep 11, 2024
9566163
Make SearchPath::new public
Sep 11, 2024
5d456df
Use `#[doc(hidden)]` instead of `#[allow(missing_docs)]` on the const…
ogoffart Sep 11, 2024
cc34d64
Use `doc(hidden)` instead of `allow(missing_docs)` in the test harness
ogoffart Sep 11, 2024
76e070f
Rollup merge of #129260 - wafarm:dont-suggest-closures, r=compiler-er…
matthiaskrgr Sep 11, 2024
1d6edee
Rollup merge of #129520 - tunawasabi:suggest-adding-struct-pattern-sy…
matthiaskrgr Sep 11, 2024
6d7ccad
Rollup merge of #129866 - root-goblin:patch-1, r=workingjubilee
matthiaskrgr Sep 11, 2024
5107ff4
Rollup merge of #130123 - FedericoBruzzone:master, r=compiler-errors
matthiaskrgr Sep 11, 2024
ff4b3d4
Rollup merge of #130161 - onur-ozkan:fmt-changed-files, r=Kobzol,Ralf…
matthiaskrgr Sep 11, 2024
e68dadb
Rollup merge of #130206 - GrigorenkoPV:WSAEDQUOT, r=ChrisDenton
matthiaskrgr Sep 11, 2024
78cf023
Rollup merge of #130207 - GrigorenkoPV:ERROR_CANT_RESOLVE_FILENAME, r…
matthiaskrgr Sep 11, 2024
66727ea
Rollup merge of #130219 - ogoffart:missing-docs-test, r=Urgau
matthiaskrgr Sep 11, 2024
678c249
Rollup merge of #130221 - vetleras:pub_search_path_new, r=chenyukang
matthiaskrgr Sep 11, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Map ERROR_CANT_RESOLVE_FILENAME to ErrorKind::FilesystemLoop
  • Loading branch information
GrigorenkoPV committed Sep 10, 2024
commit 49b3df92452ca5ce15017e69bb3f9c65d1af4139
1 change: 1 addition & 0 deletions library/std/src/sys/pal/windows/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ pub fn decode_error_kind(errno: i32) -> ErrorKind {
c::ERROR_NOT_SAME_DEVICE => return CrossesDevices,
c::ERROR_TOO_MANY_LINKS => return TooManyLinks,
c::ERROR_FILENAME_EXCED_RANGE => return InvalidFilename,
c::ERROR_CANT_RESOLVE_FILENAME => return FilesystemLoop,
_ => {}
}

Expand Down
Loading