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

Closed
wants to merge 17 commits into from
Closed

Commits on Jan 23, 2020

  1. Updating str.chars docs to mention crates.io.

    This might spare someone else a little time searching the stdlib for unicode/grapheme support.
    thesoftwarephilosopher authored Jan 23, 2020
    Configuration menu
    Copy the full SHA
    ac19dff View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2020

  1. Configuration menu
    Copy the full SHA
    5c962c7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    dcad07a View commit details
    Browse the repository at this point in the history
  3. Improve #Safety in various methods in core::ptr

    s/for reads and writes/for both ...
    amosonn committed Feb 15, 2020
    Configuration menu
    Copy the full SHA
    302b9e4 View commit details
    Browse the repository at this point in the history
  4. Improve #Safety of core::ptr::replace

    Added missing condition:
    `dst` must be readable
    amosonn committed Feb 15, 2020
    Configuration menu
    Copy the full SHA
    351782d View commit details
    Browse the repository at this point in the history
  5. Improve #Safety in various methods in core::ptr

    For all methods which read a value of type T, `read`, `read_unaligned`,
    `read_volatile` and `replace`, added missing
    constraint:
    The value they point to must be properly initialized
    amosonn committed Feb 15, 2020
    Configuration menu
    Copy the full SHA
    40ca167 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    cadf9ef View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2020

  1. Configuration menu
    Copy the full SHA
    67068f3 View commit details
    Browse the repository at this point in the history
  2. Improve #Safety of core::ptr::drop_in_place

    Added missing conditions:
    - Valid for writes
    - Valid for destructing
    amosonn committed Feb 16, 2020
    Configuration menu
    Copy the full SHA
    943e653 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    bec5d37 View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#68495 - sdegutis:patch-1, r=Mark-Simulacrum

    Updating str.chars docs to mention crates.io.
    
    This might spare someone else a little time searching the stdlib for unicode/grapheme support.
    JohnTitor authored Feb 16, 2020
    Configuration menu
    Copy the full SHA
    fbff711 View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#68701 - amosonn:patch-2, r=RalfJung

    Improve #Safety of various methods in core::ptr
    
    For `read`, `read_unaligned`,`read_volatile`, `replace`, and `drop_in_place`:
    
    - The value they point to must be properly initialized
    
    For `replace`, additionally:
    
    - The pointer must be readable
    JohnTitor authored Feb 16, 2020
    Configuration menu
    Copy the full SHA
    4e5b578 View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#68767 - kubo39:patch-macos, r=shepmaster

    macOS: avoid calling pthread_self() twice
    JohnTitor authored Feb 16, 2020
    Configuration menu
    Copy the full SHA
    2f4d648 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#69179 - JohnTitor:rename-to-fnretty, r=Centril

    Rename `FunctionRetTy` to `FnRetTy`
    
    As per FIXME comment
    
    r? @Centril
    JohnTitor authored Feb 16, 2020
    Configuration menu
    Copy the full SHA
    fbd42a7 View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#69186 - petrochenkov:kwrules, r=Centril

    [tiny] parser: `macro_rules` is a weak keyword
    
    r? @Centril
    JohnTitor authored Feb 16, 2020
    Configuration menu
    Copy the full SHA
    f8d7282 View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#69188 - GuillaumeGomez:clean-up-e0309, r=Dy…

    …lan-DPC
    
    Clean up E0309 explanation
    
    r? @Dylan-DPC
    JohnTitor authored Feb 16, 2020
    Configuration menu
    Copy the full SHA
    2ecba06 View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#69208 - RalfJung:debug-assert, r=Mark-Simul…

    …acrum
    
    debug_assert a few more raw pointer methods
    
    Fixes rust-lang#53871
    JohnTitor authored Feb 16, 2020
    Configuration menu
    Copy the full SHA
    1dafcce View commit details
    Browse the repository at this point in the history