-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Add is_empty() for PathBuf (fixes #30259), Overide methods in iterator implementation for EscapeDefault (#24214), Add help note for E0514, Improve internal docs in librustc #30520
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
Closed
Closed
Changes from 8 commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
0bd458d
Internal documentation and code style
ticki a503c80
Add help for E0514
ticki 64aea50
Add is_empty() for PathBuf, fix #30259
ticki 92ae54c
Move the is_empty method to Path instead
ticki 3324a14
Tests
ticki 99ee087
Overide methods in iterator implementation for EscapeDefault, see #24214
ticki 47690f2
Merge branch 'master' of https://github.com/rust-lang/rust into HEAD
ticki 0435a46
Fix style nitpicks from travis
ticki ba511f2
Stop re-exporting the ast::BindingMode variants.
Ms2ger 7e487b4
Register new snapshots
alexcrichton ed237e5
std: Update jemalloc version
alexcrichton c0321ed
Fix Universal CRT detection on weird setups
retep998 2062fd3
std: Remove rust_builtin C support library
alexcrichton f89581e
Fix style nitpicks from travis
ticki 05df049
Update submodules
ticki d26fd3e
Merge branch 'master' of github.com:Ticki/rust into HEAD
ticki 7db394a
Add is_empty to OsStr, rename path_extras to os_extras, don\'t go thr…
ticki 1448ce9
Downgrade submodules
ticki cceeb8f
Fix introduced error
ticki d410e67
Fix introduced error
ticki 17ff466
Merge branch 'master' of github.com:Ticki/rust into HEAD
ticki 7c59d0c
Fix introduced error
ticki b2745f3
Merge branch 'master' of github.com:Ticki/rust into HEAD
ticki efbd47f
Complete the tests
ticki 5573713
Add issue to attr
ticki 6bd9fe1
Documentation
ticki 644f258
Remove unused variables
ticki 1f9941f
Added features
ticki File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Submodule compiler-rt
updated
2251 files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's better to use
os_str_as_u8_slice
and check if it is empty. It's not fallible and it's simple.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@bluss Check out the latest commit.