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 #63214

Merged
merged 42 commits into from
Aug 2, 2019
Merged

Rollup of 7 pull requests #63214

merged 42 commits into from
Aug 2, 2019

Commits on Jul 29, 2019

  1. Configuration menu
    Copy the full SHA
    0aa9658 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    01859bb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fc48f3e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    eeb2335 View commit details
    Browse the repository at this point in the history
  5. code review fixes

    saleemjaffer committed Jul 29, 2019
    Configuration menu
    Copy the full SHA
    4f0ab6c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    307798a View commit details
    Browse the repository at this point in the history
  7. tidy fixes

    saleemjaffer committed Jul 29, 2019
    Configuration menu
    Copy the full SHA
    aa3d40c View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    9782b37 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    8e9d0fa View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    654519d View commit details
    Browse the repository at this point in the history
  11. code review fixes

    saleemjaffer committed Jul 29, 2019
    Configuration menu
    Copy the full SHA
    03d47be View commit details
    Browse the repository at this point in the history
  12. code review fixes

    saleemjaffer committed Jul 29, 2019
    Configuration menu
    Copy the full SHA
    9f8b099 View commit details
    Browse the repository at this point in the history
  13. code review fixes

    saleemjaffer committed Jul 29, 2019
    Configuration menu
    Copy the full SHA
    5bb06b3 View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2019

  1. code review fixes

    saleemjaffer committed Jul 30, 2019
    Configuration menu
    Copy the full SHA
    9620521 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2a33fbf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    69daf84 View commit details
    Browse the repository at this point in the history
  4. tidy fixes

    saleemjaffer committed Jul 30, 2019
    Configuration menu
    Copy the full SHA
    b60a336 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    fc5df1d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    35417e7 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    5585445 View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2019

  1. Configuration menu
    Copy the full SHA
    87e73c1 View commit details
    Browse the repository at this point in the history
  2. code review fixes

    saleemjaffer committed Jul 31, 2019
    Configuration menu
    Copy the full SHA
    152f0d3 View commit details
    Browse the repository at this point in the history
  3. code review fixes

    saleemjaffer committed Jul 31, 2019
    Configuration menu
    Copy the full SHA
    a1e59d1 View commit details
    Browse the repository at this point in the history
  4. code review fixes

    saleemjaffer committed Jul 31, 2019
    Configuration menu
    Copy the full SHA
    c17d11f View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2019

  1. code review fixes

    saleemjaffer committed Aug 1, 2019
    Configuration menu
    Copy the full SHA
    0c4513e View commit details
    Browse the repository at this point in the history
  2. code review fixes

    saleemjaffer committed Aug 1, 2019
    Configuration menu
    Copy the full SHA
    00d32e8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b5c04e6 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    cbac781 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    86633b6 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ae65848 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    325c6a5 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    cefbf4d View commit details
    Browse the repository at this point in the history
  9. Fix ICE in rust-lang#63135

    ExpHP committed Aug 1, 2019
    Configuration menu
    Copy the full SHA
    b3321fb View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    2aa368a View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    7052c35 View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2019

  1. Rollup merge of rust-lang#62663 - llogiq:more-questionmark-docs, r=Gu…

    …illaumeGomez
    
    More questionmarks in doctests
    
    This removes the other `unwrap`s in the macro doctests, replacing them with `?`. For now, we need to specify the main function including the return type, we can get rid of that once the return type suggestion for `fn main() { .. }` works correctly.
    
    r? @QuietMisdreavus
    Centril authored Aug 2, 2019
    Configuration menu
    Copy the full SHA
    6b951c2 View commit details
    Browse the repository at this point in the history
  2. Rollup merge of rust-lang#62969 - saleemjaffer:declutter_interperror,…

    … r=RalfJung
    
    Changing the structure of `mir::interpret::InterpError`
    
    Implements [this](rust-lang/const-eval#4 (comment))
    Centril authored Aug 2, 2019
    Configuration menu
    Copy the full SHA
    51dc78e View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#63153 - varkor:remove-resolve_const_var, r=…

    …cramertj
    
    Remove redundant method with const variable resolution
    
    I've also removed a `bug!()` in const value relation code and replaced it with a `FIXME`. Now `ConstValue::Slice` and `ConstValue::ByRef` will simply fail to unify rather than ICEing, which seems more user-friendly for testers.
    Centril authored Aug 2, 2019
    Configuration menu
    Copy the full SHA
    5155c7e View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#63189 - waywardmonkeys:doc-improvements, r=…

    …Centril
    
    Doc improvements
    
    Miscellaneous documentation fixes.
    Centril authored Aug 2, 2019
    Configuration menu
    Copy the full SHA
    dbfe12d View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#63198 - rbartlensky:fix-macro-trailing-comm…

    …a, r=petrochenkov
    
    Allow trailing comma in macro 2.0 declarations.
    
    This should hopefully close rust-lang#63102.
    Centril authored Aug 2, 2019
    Configuration menu
    Copy the full SHA
    89dce46 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    3396550 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#63203 - spastorino:is-mutable-use-place-ref…

    …, r=oli-obk
    
    Make is_mutable use PlaceRef instead of it's fields
    
    r? @oli-obk
    Centril authored Aug 2, 2019
    Configuration menu
    Copy the full SHA
    97098f4 View commit details
    Browse the repository at this point in the history