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 11 pull requests #48774

Closed
wants to merge 27 commits into from
Closed

Commits on Feb 28, 2018

  1. doc: no need for the references

    Also:
    - apply some rustfmt love
    - fix output of one example
    tshepang committed Feb 28, 2018
    Configuration menu
    Copy the full SHA
    df8dd3f View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2018

  1. Configuration menu
    Copy the full SHA
    e822e62 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    19c4771 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5c70619 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f45f760 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f7693c0 View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2018

  1. Remove isize test

    flip1995 committed Mar 2, 2018
    Configuration menu
    Copy the full SHA
    15ecf06 View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2018

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

Commits on Mar 4, 2018

  1. Update sccache to its master branch

    Ideally I'd like to soon enable sccache for rustbuild itself and some of the
    stage0 tools, but for that to work we'll need some better Rust support than the
    pretty old version we were previously using!
    alexcrichton committed Mar 4, 2018
    Configuration menu
    Copy the full SHA
    04da856 View commit details
    Browse the repository at this point in the history
  2. Refactor contrived match.

    leoyvens committed Mar 4, 2018
    Configuration menu
    Copy the full SHA
    0b0e1b7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1c191b2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    16ac85c View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2018

  1. Remove a couple of isize references from hashmap docs

    Also fix a spelling mistake.
    tbu- committed Mar 5, 2018
    Configuration menu
    Copy the full SHA
    88f32d1 View commit details
    Browse the repository at this point in the history
  2. while let all the things

    leoyvens committed Mar 5, 2018
    Configuration menu
    Copy the full SHA
    2e7e68b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    831009f View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2018

  1. Remove seemingly unused sugarise-doc-comments Python script.

    This Python script converts documentation comments from the
    `#[doc = "..."]` attribute to the `///` syntax. It was added six
    years ago, presumably to help with the transition when `///` was
    implemented and hasn't really been touched since. I don't think there's
    much value in keeping it around at this point.
    frewsxcv committed Mar 6, 2018
    Configuration menu
    Copy the full SHA
    2ec47e0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e50005a View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#48432 - flip1995:lit_diag, r=oli-obk

    Suggest type for overflowing bin/hex-literals
    
    Fixes rust-lang#48073
    
    For hexadecimal and binary literals, which overflow, it gives an additional note to the warning message, like in this [comment](rust-lang#48073 (comment)).
    
    Additionally it will suggest a type (`X < Y`):
    - `iX`: if literal fits in `uX` => `uX`, else => `iY`
    - `-iX` => `iY`
    - `uX` => `uY`
    
    Exceptions: `isize`, `usize`. I don't think you can make a good suggestion here. The programmer has to figure it out on it's own in this case.
    
    r? @oli-obk
    GuillaumeGomez authored Mar 6, 2018
    Configuration menu
    Copy the full SHA
    e0ed4da View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#48511 - GuillaumeGomez:rustdoc-resource-suf…

    …fix, r=QuietMisdreavus
    
    Add resource-suffix option for rustdoc
    
    Alternative version of rust-lang#48442.
    
    cc @onur
    
    r? @QuietMisdreavus
    GuillaumeGomez authored Mar 6, 2018
    Configuration menu
    Copy the full SHA
    80619d3 View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#48546 - GuillaumeGomez:raw-string-error-not…

    …e, r=estebank
    
    Raw string error note
    
    Fixes rust-lang#48395.
    
    I think this note should be helpful enough to solve the issue.
    GuillaumeGomez authored Mar 6, 2018
    Configuration menu
    Copy the full SHA
    53d933e View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#48590 - tshepang:more-simple, r=frewsxcv

    doc: no need for the reference
    
    Also, we are well within line length limit
    GuillaumeGomez authored Mar 6, 2018
    Configuration menu
    Copy the full SHA
    05c1bb9 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#48647 - alexcrichton:update-sccache, r=kennytm

    Update sccache to its master branch
    
    Ideally I'd like to soon enable sccache for rustbuild itself and some of the
    stage0 tools, but for that to work we'll need some better Rust support than the
    pretty old version we were previously using!
    GuillaumeGomez authored Mar 6, 2018
    Configuration menu
    Copy the full SHA
    54b9c92 View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#48727 - leodasvacas:refactor-contrived-matc…

    …h, r=rkruppe
    
    Refactor contrived match.
    GuillaumeGomez authored Mar 6, 2018
    Configuration menu
    Copy the full SHA
    9d1e13e View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#48732 - debris:remove_powerpc64, r=alexcric…

    …hton
    
    Remove useless powerpc64 entry from ARCH_TABLE
    
    Hope, I understood the scope of the fix correctly. closes rust-lang#47737
    GuillaumeGomez authored Mar 6, 2018
    Configuration menu
    Copy the full SHA
    6b05c48 View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#48753 - tbu-:pr_hashmap_isize, r=BurntSushi

    Remove a couple of `isize` references from hashmap docs
    
    Also fix a spelling mistake.
    GuillaumeGomez authored Mar 6, 2018
    Configuration menu
    Copy the full SHA
    25a89cf View commit details
    Browse the repository at this point in the history
  11. Rollup merge of rust-lang#48754 - leodasvacas:while-let-all-the-thing…

    …s, r=rkruppe
    
    while let all the things
    GuillaumeGomez authored Mar 6, 2018
    Configuration menu
    Copy the full SHA
    408467e View commit details
    Browse the repository at this point in the history
  12. Rollup merge of rust-lang#48761 - frewsxcv:frewsxcv-rm-python, r=alex…

    …crichton
    
    Remove seemingly unused sugarise-doc-comments Python script.
    
    This Python script converts documentation comments from the
    `#[doc = "..."]` attribute to the `///` syntax. It was added six
    years ago, presumably to help with the transition when `///` was
    implemented and hasn't really been touched since. I don't think there's
    much value in keeping it around at this point.
    GuillaumeGomez authored Mar 6, 2018
    Configuration menu
    Copy the full SHA
    93be89a View commit details
    Browse the repository at this point in the history