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 13 pull requests #65368

Merged
merged 33 commits into from
Oct 13, 2019
Merged

Rollup of 13 pull requests #65368

merged 33 commits into from
Oct 13, 2019

Commits on Oct 3, 2019

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

Commits on Oct 9, 2019

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

Commits on Oct 11, 2019

  1. Configuration menu
    Copy the full SHA
    5bb0a03 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    91cf02c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    10671f1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d21eeb1 View commit details
    Browse the repository at this point in the history
  5. resolve: fix error title regarding private constructors

    The constructor is private, not the type.
    
    Idea credit to @petrochenkov, discussed at rust-lang#65153
    da-x committed Oct 11, 2019
    Configuration menu
    Copy the full SHA
    7140c02 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9d11bda View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    05db5a2 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    95a65cd View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2019

  1. Configuration menu
    Copy the full SHA
    e039534 View commit details
    Browse the repository at this point in the history
  2. Improve docs on some char boolean methods

    BO41 committed Oct 12, 2019
    Configuration menu
    Copy the full SHA
    d8c2956 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a2b2362 View commit details
    Browse the repository at this point in the history
  4. compress the function, remove the assert check.

    Guanqun Lu committed Oct 12, 2019
    Configuration menu
    Copy the full SHA
    63cb2fa View commit details
    Browse the repository at this point in the history
  5. it's C++20

    RalfJung committed Oct 12, 2019
    Configuration menu
    Copy the full SHA
    f363550 View commit details
    Browse the repository at this point in the history
  6. fix link targets

    RalfJung committed Oct 12, 2019
    Configuration menu
    Copy the full SHA
    d6ab45d View commit details
    Browse the repository at this point in the history

Commits on Oct 13, 2019

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

    Centril committed Oct 13, 2019
    Configuration menu
    Copy the full SHA
    477a68b View commit details
    Browse the repository at this point in the history
  3. simplify integer_lit

    Centril committed Oct 13, 2019
    Configuration menu
    Copy the full SHA
    7effe63 View commit details
    Browse the repository at this point in the history
  4. mbe: reduce panictry! uses.

    Centril committed Oct 13, 2019
    Configuration menu
    Copy the full SHA
    94db37a View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#65039 - HeroicKatora:deny-by-default-book, …

    …r=GuillaumeGomez
    
    Document missing deny by default lints
    Centril authored Oct 13, 2019
    Configuration menu
    Copy the full SHA
    d0f8bd6 View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#65069 - crgl:clone-from-vec-deque, r=bluss

    Implement Clone::clone_from for VecDeque
    
    See rust-lang#28481. For simple data types with the target much longer than the source, this implementation can be significantly slower than the default (probably due to the use of truncate). However, it should be substantially faster when cloning from nested data structures with similar shapes or when cloning from VecDeques with similar lengths, hopefully more common use cases for clone_from.
    Centril authored Oct 13, 2019
    Configuration menu
    Copy the full SHA
    4dc0b8a View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#65165 - BO41:char_docs, r=varkor

    Improve docs on some char boolean methods
    
    simple revival of rust-lang#61794
    (also rustfmt on rest of file :)
    
    Documentation for `is_xid_start()` and `is_xid_continue()` couldn't be improved since both methods got remove from this repository
    
    r? @dtolnay
    cc @JohnCSimon
    Centril authored Oct 13, 2019
    Configuration menu
    Copy the full SHA
    82fb193 View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#65248 - estebank:mention-if-let, r=cramertj

    Suggest `if let` on `let` refutable binding
    
    Fix rust-lang#58385.
    Centril authored Oct 13, 2019
    Configuration menu
    Copy the full SHA
    963e4bc View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#65250 - da-x:ctor-in-error-msgs, r=petroche…

    …nkov
    
    resolve: fix error title regarding private constructors
    
    One reason is that constructors can be private while their types can be
    public.
    
    Idea credit to @petrochenkov, discussed at rust-lang#65153
    Centril authored Oct 13, 2019
    Configuration menu
    Copy the full SHA
    540278c View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#65295 - estebank:gotta-go-fast, r=nnethercote

    Move diagnostics code out of the critical path
    
    Follow up to rust-lang#65077.
    
    r? @nnethercote
    Centril authored Oct 13, 2019
    Configuration menu
    Copy the full SHA
    433ea1a View commit details
    Browse the repository at this point in the history
  11. Rollup merge of rust-lang#65320 - memoryruins:const_err, r=oli-obk

    Report `CONST_ERR` lint in external macros
    
    fixes rust-lang#65300
    fixes rust-lang#61058
    
    r? @oli-obk
    Centril authored Oct 13, 2019
    Configuration menu
    Copy the full SHA
    643261a View commit details
    Browse the repository at this point in the history
  12. Rollup merge of rust-lang#65327 - guanqun:remove-hand-binary-search, …

    …r=petrochenkov
    
    replace the hand-written binary search with the library one
    Centril authored Oct 13, 2019
    Configuration menu
    Copy the full SHA
    af8a6e5 View commit details
    Browse the repository at this point in the history
  13. Rollup merge of rust-lang#65339 - RalfJung:atomic-ordering, r=Centril

    do not reference LLVM for our concurrency memory model
    
    Fixes rust-lang#65282
    Centril authored Oct 13, 2019
    Configuration menu
    Copy the full SHA
    293d02d View commit details
    Browse the repository at this point in the history
  14. Rollup merge of rust-lang#65357 - Centril:simplify-maybe-annotate-wit…

    …h-ascription, r=davidtwco
    
    syntax: simplify maybe_annotate_with_ascription
    
    Split out from rust-lang#65324.
    
    r? @estebank
    Centril authored Oct 13, 2019
    Configuration menu
    Copy the full SHA
    b143aa2 View commit details
    Browse the repository at this point in the history
  15. Rollup merge of rust-lang#65358 - Centril:smsf, r=davidtwco

    simplify maybe_stage_features
    
    Extracted from rust-lang#65324.
    
    r? @estebank
    Centril authored Oct 13, 2019
    Configuration menu
    Copy the full SHA
    5af528a View commit details
    Browse the repository at this point in the history
  16. Rollup merge of rust-lang#65359 - Centril:sil, r=davidtwco

    simplify integer_lit
    
    Extracted from rust-lang#65324.
    
    r? @davidtwco
    Centril authored Oct 13, 2019
    Configuration menu
    Copy the full SHA
    af54a3e View commit details
    Browse the repository at this point in the history
  17. Rollup merge of rust-lang#65360 - Centril:mbrpt, r=petrochenkov

    mbe: reduce panictry! uses.
    
    Extracted from rust-lang#65324.
    
    r? @petrochenkov
    Centril authored Oct 13, 2019
    Configuration menu
    Copy the full SHA
    b828591 View commit details
    Browse the repository at this point in the history