-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Map clone #22276
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Map clone #22276
Conversation
This partially resolves rust-lang#22243.
This resolves rust-lang#22243, at least for one-letter variable names.
(rust_highfive has picked a reviewer for you, use r? to override) |
much nicer, thanks! |
looks good to me |
This resolves rust-lang#22243 for the single-letter variables that I could grep. Some occurences could not be replaced.
I believe the collection ones you caught are done in #22242 as well. Although yours got r'd first so I guess I'll go revert mine. Unless Git is smart enough to deal with identical changes?
Ah you didn't do any of |
If you exclude any path that includes |
This resolves rust-lang#22243 for the single-letter variables that I could grep. Some occurences could not be replaced.
This resolves rust-lang#22243 for the single-letter variables that I could grep. Some occurences could not be replaced.
This was causing lots of failures in Steve's rollup: #22352 |
Failed in the rollup again. Issue with Windows specifically. http://buildbot.rust-lang.org/builders/auto-win-32-nopt-t/builds/3322/steps/compile/logs/stdio I recommend |
|
@bors rollup- |
1 similar comment
@bors rollup- |
@bors r- |
(I agree with @Manishearth , this might need to go through runs on the try-server or something.) |
My local test suite passed, is there anything I can do? |
@ruud-v-a are you running on a Windows machine? If not, then it might be good for you to remove the windows-related changes, since those were what caused problems here, from what I can tell. |
I do have a Windows box, but I never succeeded in compiling Rust there, will try now. |
This (including the fix for the failure) is covered in #22287, which seems to have gotten stuck in the buildqueue, so perhaps we can just close this one off? |
Sounds good to me. |
This overlaps with rust-lang#22276 (I left make check running overnight) but covers a number of additional cases and has a few rewrites where the clones are not even necessary. This also implements `RandomAccessIterator` for `iter::Cloned` cc @steveklabnik, you may want to glance at this before rust-lang#22281 gets the bors treatment
This resolves #22243 for the single-letter variables that I could grep. Some occurences could not be replaced.