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

Merged
merged 24 commits into from
Mar 23, 2016
Merged

Rollup of 11 pull requests #32454

merged 24 commits into from
Mar 23, 2016

Commits on Mar 21, 2016

  1. Configuration menu
    Copy the full SHA
    08eaf07 View commit details
    Browse the repository at this point in the history
  2. Implement Default for OsStr

    WiSaGaN committed Mar 21, 2016
    Configuration menu
    Copy the full SHA
    aa5afb0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b5b1d06 View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2016

  1. Configuration menu
    Copy the full SHA
    9575fe7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    00a32b2 View commit details
    Browse the repository at this point in the history
  3. doc: small char improvements

    tshepang committed Mar 22, 2016
    Configuration menu
    Copy the full SHA
    7d626e9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    79da64a View commit details
    Browse the repository at this point in the history
  5. std: Store flowinfo/scope_id in host byte order

    Apparently these aren't supposed to be stored in network byte order, so doing so
    ends up causing failures when it would otherwise succeed when stored in the host
    byte order.
    
    Closes rust-lang#32424
    alexcrichton committed Mar 22, 2016
    Configuration menu
    Copy the full SHA
    88506ce View commit details
    Browse the repository at this point in the history
  6. Fix const trans

    Const was dereferenced when autoderefs is zero.
    sanxiyn committed Mar 22, 2016
    Configuration menu
    Copy the full SHA
    308dc55 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    45c72d5 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    4c71347 View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2016

  1. Configuration menu
    Copy the full SHA
    424fa43 View commit details
    Browse the repository at this point in the history
  2. Docs: Change "statements" to "expressions" on match

    I apt to use `expressions` over `statements`, because `match` is a expression in essence, though it can become a statement when followed a semicolon.
    tclfs committed Mar 23, 2016
    Configuration menu
    Copy the full SHA
    ea9ae48 View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#32404 - WiSaGaN:feature/osstring-implement-…

    …default, r=aturon
    
    Implement Default trait for OsString/OsStr
    
    Fixes rust-lang#32385
    eddyb committed Mar 23, 2016
    Configuration menu
    Copy the full SHA
    2de428e View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#32420 - frewsxcv:regression-test-26997, r=a…

    …lexcrichton
    
    Add regression test for Issue 26997.
    
    rust-lang#26997
    eddyb committed Mar 23, 2016
    Configuration menu
    Copy the full SHA
    6b4b65a View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#32423 - mitaa:rdoc-vstruct-fields, r=alexcr…

    …ichton
    
    rustdoc: Omit `pub` for inlined variant-struct fields
    
    fixes rust-lang#32395
    
    r? @alexcrichton
    eddyb committed Mar 23, 2016
    Configuration menu
    Copy the full SHA
    46b2a99 View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#32425 - ituxbag:master, r=alexcrichton

    Added version 7.3* for Apple's clang compiler
    
    The recent 7.3 clang version was missing.
    
    Closes rust-lang#32442
    eddyb committed Mar 23, 2016
    Configuration menu
    Copy the full SHA
    0c424f9 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#32429 - alexcrichton:scope-id-hton, r=aturon

    std: Store flowinfo/scope_id in host byte order
    
    Apparently these aren't supposed to be stored in network byte order, so doing so
    ends up causing failures when it would otherwise succeed when stored in the host
    byte order.
    
    Closes rust-lang#32424
    eddyb committed Mar 23, 2016
    Configuration menu
    Copy the full SHA
    c028b1c View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#32430 - sanxiyn:const-trans, r=arielb1

    Fix const trans
    
    Fix rust-lang#30615.
    
    The idea was that when there are N autoderefs, first do N-1 derefs and check for autoref. If there is autoref, done, if not, do one more deref. But when N is zero, doing one more deref is wrong.
    eddyb committed Mar 23, 2016
    Configuration menu
    Copy the full SHA
    12e54bb View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#32431 - nicholasf:tweak/improve-expression,…

    … r=steveklabnik
    
    Simplifying some of the phrasing explaining lifetime elision
    
    Just simplifying some of the language expressing what kind of inference Rust can and can't do on function signatures.
    eddyb committed Mar 23, 2016
    Configuration menu
    Copy the full SHA
    d7bf3d3 View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#32434 - mitaa:rdoc-no-inline, r=alexcrichton

    rustdoc: Consider `doc(no_inline)` in crate-local inlining
    
    Imports with `doc(no_inline)` will not be inlined, even when `doc(inline)` is present.
    
    fixes rust-lang#32343
    
    r? @alexcrichton
    eddyb committed Mar 23, 2016
    Configuration menu
    Copy the full SHA
    2acad9c View commit details
    Browse the repository at this point in the history
  11. Rollup merge of rust-lang#32437 - eddyb:orbital-msvc, r=alexcrichton

    Annotate run-pass/backtrace with #[rustc_no_mir] on MSVC.
    
    Fixes rust-lang#32384 by not using MIR on MSVC for the functions in the path of the backtrace.
    This is the known blocker for the MSVC MIR builder, hopefully the only one overall.
    r? @alexcrichton Confirmed to work on a nightly, by @retep998.
    eddyb committed Mar 23, 2016
    Configuration menu
    Copy the full SHA
    3fd144d View commit details
    Browse the repository at this point in the history
  12. Rollup merge of rust-lang#32441 - tshepang:doc-primitive, r=steveklabnik

    doc: small char improvements
    eddyb committed Mar 23, 2016
    Configuration menu
    Copy the full SHA
    7f2612e View commit details
    Browse the repository at this point in the history
  13. Rollup merge of rust-lang#32443 - tclfs:patch-8, r=steveklabnik

    Docs: Change "statements" to "expressions" on `match`
    
    I apt to use `expressions` over `statements`, because `match` is a expression in essence, though it can become a statement when followed a semicolon.
    eddyb committed Mar 23, 2016
    Configuration menu
    Copy the full SHA
    2e9b40f View commit details
    Browse the repository at this point in the history