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 7 pull requests #71230

Merged
merged 23 commits into from
Apr 17, 2020
Merged

Rollup of 7 pull requests #71230

merged 23 commits into from
Apr 17, 2020

Commits on Apr 8, 2020

  1. Added FuseIteratorImpl, FustDoubleEndedIteratorImpl and FuseExactSize…

    …IteratorImpl to avoid exposing default functions outside of the current crate.
    rakshith-ravi committed Apr 8, 2020
    Configuration menu
    Copy the full SHA
    0a54a94 View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2020

  1. Added comments.

    Removed unnecessarry empty impls.
    Moved code to organise it better
    rakshith-ravi committed Apr 10, 2020
    Configuration menu
    Copy the full SHA
    51cd29c View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2020

  1. Configuration menu
    Copy the full SHA
    908436f View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2020

  1. Configuration menu
    Copy the full SHA
    9ee4d1a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    abe5973 View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2020

  1. switch back to 'bytes'

    RalfJung committed Apr 16, 2020
    Configuration menu
    Copy the full SHA
    0d01ce6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    69423bf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    18d0907 View commit details
    Browse the repository at this point in the history
  4. bikeshed

    RalfJung committed Apr 16, 2020
    Configuration menu
    Copy the full SHA
    250b27d View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2edd123 View commit details
    Browse the repository at this point in the history
  6. Add test for issue-24843

    JohnTitor committed Apr 16, 2020
    Configuration menu
    Copy the full SHA
    9fb3f55 View commit details
    Browse the repository at this point in the history
  7. Add test for issue-28575

    JohnTitor committed Apr 16, 2020
    Configuration menu
    Copy the full SHA
    077a7f7 View commit details
    Browse the repository at this point in the history
  8. Add test for issue-54067

    JohnTitor committed Apr 16, 2020
    Configuration menu
    Copy the full SHA
    119bbbe View commit details
    Browse the repository at this point in the history
  9. Add test for issue-67893

    JohnTitor committed Apr 16, 2020
    Configuration menu
    Copy the full SHA
    0b85356 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    a6855b9 View commit details
    Browse the repository at this point in the history
  11. Fix typo in Default trait docs: Provides -> Provide

    An earlier commit (99ed06e) accidentally changed this paragraph from the
    original, imperative "Provide" to the present tense "Provides". The
    latter is indeed the standard for Rustdoc comments relating to a
    function or method, but this snippet is introducing the Default trait in
    general terms and not talking about any particular function. I believe
    this change was likely made in error and should be reverted.
    leocassarani committed Apr 16, 2020
    Configuration menu
    Copy the full SHA
    da48550 View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2020

  1. Rollup merge of rust-lang#70578 - PankajChaudhary5:master, r=Guillaum…

    …eGomez
    
    Add long error explanation for E0657
    
    Added proper error explanation for issue E0657 in the Rust compiler.
    
    Part of rust-lang#61137
    
    r? @GuillaumeGomez
    Dylan-DPC authored Apr 17, 2020
    Configuration menu
    Copy the full SHA
    abd72f7 View commit details
    Browse the repository at this point in the history
  2. Rollup merge of rust-lang#70910 - rakshith-ravi:master, r=cuviper

    Hides default fns inside Fuse impl to avoid exposing it to any crate
    
    Fixes rust-lang#70796
    
    @cuviper I've added some default, private traits to do the job for us. If required, I can expose them to a specific visibility if you want to call these functions for rust-lang#70332
    
    r? @cuviper
    Dylan-DPC authored Apr 17, 2020
    Configuration menu
    Copy the full SHA
    d194587 View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#71164 - RalfJung:uninit-not-undef, r=oli-obk

    reword Miri validity errors: undefined -> uninitialized
    
    I don't think we say "undefined value" or anything like that anywhere in the docs or so, but we do use the term "uninitialized memory", so I think we should do the same here.
    
    Longer-term, I think we should also internally rename "undef" to "uninit".
    
    r? @oli-obk
    Dylan-DPC authored Apr 17, 2020
    Configuration menu
    Copy the full SHA
    5280d15 View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#71182 - JohnTitor:regression-tests, r=Mark-…

    …Simulacrum
    
    Add some regression tests
    
    Closes rust-lang#24843
    Closes rust-lang#28575
    Closes rust-lang#54067
    Closes rust-lang#66868
    Closes rust-lang#67893
    Closes rust-lang#68813
    Dylan-DPC authored Apr 17, 2020
    Configuration menu
    Copy the full SHA
    b347097 View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#71206 - RalfJung:dont-try, r=oli-obk

    Miri error messages: avoid try terminology
    
    r? @oli-obk
    Dylan-DPC authored Apr 17, 2020
    Configuration menu
    Copy the full SHA
    b2e4d48 View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#71220 - cuviper:std_or_patterns, r=Mark-Sim…

    …ulacrum
    
    Dogfood or_patterns in the standard library
    
    We can start using `or_patterns` in the standard library as a step toward stabilization.
    
    cc rust-lang#54883 @Centril
    Dylan-DPC authored Apr 17, 2020
    Configuration menu
    Copy the full SHA
    28964b4 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#71225 - leocassarani:patch-1, r=jonas-schie…

    …vink
    
    Fix typo in Default trait docs: Provides -> Provide
    
    An earlier commit (99ed06e) accidentally changed this paragraph from the original, imperative `Provide` to the present tense `Provides`. The latter is indeed the standard for Rustdoc comments relating to a function or method, but this snippet is introducing the `Default` trait in general terms and not talking about any particular function. I believe this change was likely made in error and should be reverted.
    Dylan-DPC authored Apr 17, 2020
    Configuration menu
    Copy the full SHA
    65243a8 View commit details
    Browse the repository at this point in the history