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 12 pull requests #69986

Merged
merged 43 commits into from
Mar 13, 2020
Merged

Rollup of 12 pull requests #69986

merged 43 commits into from
Mar 13, 2020

Commits on Feb 23, 2020

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

Commits on Mar 7, 2020

  1. Configuration menu
    Copy the full SHA
    9fa7981 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6bfff8a View commit details
    Browse the repository at this point in the history
  3. Use ?-operator in more places (clippy::question_mark, had some false …

    …negatives fixed recently)
    matthiaskrgr committed Mar 7, 2020
    Configuration menu
    Copy the full SHA
    7aad89a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    45108b1 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1351db3 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    254ceae View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    0d7faaf View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    cca3d52 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    77af19e View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    f326f0f View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    3f87f8c View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    8351138 View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2020

  1. Configuration menu
    Copy the full SHA
    611cfd5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    118003d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7326e53 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8f0fa24 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    90e8058 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    f32cccc View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    7b1b08c View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    e9c9657 View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2020

  1. Add test for issue-58490

    JohnTitor committed Mar 13, 2020
    Configuration menu
    Copy the full SHA
    081e32b View commit details
    Browse the repository at this point in the history
  2. Add test for issue-60390

    JohnTitor committed Mar 13, 2020
    Configuration menu
    Copy the full SHA
    0efc2cf View commit details
    Browse the repository at this point in the history
  3. Add test for issue-62504

    JohnTitor committed Mar 13, 2020
    Configuration menu
    Copy the full SHA
    a2c41e9 View commit details
    Browse the repository at this point in the history
  4. Add test for issue-67739

    JohnTitor committed Mar 13, 2020
    Configuration menu
    Copy the full SHA
    3609bac View commit details
    Browse the repository at this point in the history
  5. Add test for issue-69092

    JohnTitor committed Mar 13, 2020
    Configuration menu
    Copy the full SHA
    7c987eb View commit details
    Browse the repository at this point in the history
  6. adjust enum naming

    RalfJung committed Mar 13, 2020
    Configuration menu
    Copy the full SHA
    f61fb53 View commit details
    Browse the repository at this point in the history
  7. bless tests

    RalfJung committed Mar 13, 2020
    Configuration menu
    Copy the full SHA
    13ea774 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    08a7fa6 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    a36bf9c View commit details
    Browse the repository at this point in the history
  10. Add documentation for pub keyword

    sjud authored and Mark-Simulacrum committed Mar 13, 2020
    Configuration menu
    Copy the full SHA
    87f8ee6 View commit details
    Browse the repository at this point in the history
  11. Rollup merge of rust-lang#69403 - LeSeulArtichaut:copy-ioslice, r=sfa…

    …ckler
    
    Implement `Copy` for `IoSlice`
    
    Resolves rust-lang#69395
    
    r? @sfackler
    JohnTitor committed Mar 13, 2020
    Configuration menu
    Copy the full SHA
    5d90154 View commit details
    Browse the repository at this point in the history
  12. Rollup merge of rust-lang#69460 - LeSeulArtichaut:move-compile-pass, …

    …r=RalfJung
    
    Move some `build-pass` tests to `check-pass`
    
    Helps with rust-lang#62277.
    
    r? @cramertj cc @Centril
    JohnTitor committed Mar 13, 2020
    Configuration menu
    Copy the full SHA
    913a933 View commit details
    Browse the repository at this point in the history
  13. Rollup merge of rust-lang#69723 - sjud:sjud-doc-request, r=Mark-Simul…

    …acrum
    
    Added doc on keyword Pub.
    
    Hi, this is my first pull request. I hope it's OK. Please let me know if it would benefit from any changes. Thank you.
    JohnTitor committed Mar 13, 2020
    Configuration menu
    Copy the full SHA
    35df9cc View commit details
    Browse the repository at this point in the history
  14. Rollup merge of rust-lang#69802 - matthiaskrgr:cl1ppy, r=Dylan-DPC

    fix more clippy findings
    
    * reduce references on match patterns (clippy::match_ref_pats)
    * Use writeln!(fmt, "word") instead of write!(fmt, "word\n") (clippy::write_with_newline)
    * libtest: remove redundant argument to writeln!() (clippy::writeln_empty_string)
    * remove unneeded mutable references (cippy::unnecessary_mut_passed)
    * libtest: declare variables as floats instead of casting them (clippy::unnecessary_cast)
    * rustdoc: remove redundant static lifetimes (clippy::redundant_static_lifetimes)
    * call .as_deref() instead of .as_ref().map(Deref::deref) (clippy::option_as_ref_deref)
    * iterate over a maps values directly. (clippy::for_kv_map)
    * rustdoc: simplify boolean condition (clippy::nonminimal_bool)
    * Use ?-operator in more places (clippy::question_mark, had some false negatives fixed recently)
    * rustdoc: Use .any(p) instead of find(p).is_some(). (clippy::search_is_some)
    * rustdoc: don't call into_iter() on iterator. (clippy::identity_conversion)
    JohnTitor committed Mar 13, 2020
    Configuration menu
    Copy the full SHA
    8e17c83 View commit details
    Browse the repository at this point in the history
  15. Rollup merge of rust-lang#69809 - matthiaskrgr:lifetimes, r=eddyb

    remove lifetimes that can be elided (clippy::needless_lifetimes)
    JohnTitor committed Mar 13, 2020
    Configuration menu
    Copy the full SHA
    c13548d View commit details
    Browse the repository at this point in the history
  16. Rollup merge of rust-lang#69947 - GuillaumeGomez:cleanup-e0423, r=Dyl…

    …an-DPC
    
    Clean up E0423 explanation
    
    r? @Dylan-DPC
    JohnTitor committed Mar 13, 2020
    Configuration menu
    Copy the full SHA
    78d722f View commit details
    Browse the repository at this point in the history
  17. Rollup merge of rust-lang#69949 - rust-lang:triagebot-ping-alias, r=M…

    …ark-Simulacrum
    
    triagebot.toml: add ping aliases
    
    I think I got the syntax right.
    Closes rust-lang/triagebot#402.
    
    r? @Mark-Simulacrum
    cc @pnkfelix
    JohnTitor committed Mar 13, 2020
    Configuration menu
    Copy the full SHA
    995e584 View commit details
    Browse the repository at this point in the history
  18. Rollup merge of rust-lang#69954 - RalfJung:panic_if-assert, r=Centril…

    …,eddyb
    
    rename panic_if_ intrinsics to assert_
    
    [Suggested by @eddyb](rust-lang/miri#1222 (comment))
    JohnTitor committed Mar 13, 2020
    Configuration menu
    Copy the full SHA
    77263db View commit details
    Browse the repository at this point in the history
  19. Rollup merge of rust-lang#69960 - RalfJung:abort, r=oli-obk

    miri engine: fix treatment of abort intrinsic
    
    I screwed up in rust-lang#69830 and added `abort` to the wrong block of intrinsics, namely the one that actually has a return place. So that branch was never actually reached.
    
    r? @oli-obk
    JohnTitor committed Mar 13, 2020
    Configuration menu
    Copy the full SHA
    f2af2cf View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    93da9d7 View commit details
    Browse the repository at this point in the history
  21. Rollup merge of rust-lang#69973 - tspiteri:const-int-conversion-since…

    …, r=dtolnay
    
    Update stable-since version for const_int_conversion
    
    Since rust-lang#69373 was not merged in time for 1.43.0 beta, update to `since = "1.44.0"`.
    JohnTitor committed Mar 13, 2020
    Configuration menu
    Copy the full SHA
    b0d1fc5 View commit details
    Browse the repository at this point in the history
  22. Rollup merge of rust-lang#69974 - GuillaumeGomez:cleanup-e0434, r=Dyl…

    …an-DPC
    
    Clean up E0434 explanation
    
    r? @Dylan-DPC
    JohnTitor committed Mar 13, 2020
    Configuration menu
    Copy the full SHA
    1d8f5f0 View commit details
    Browse the repository at this point in the history