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

Add MaybeUninit::assume_init_drop. #76484

Merged
merged 6 commits into from
Sep 12, 2020

Commits on Sep 8, 2020

  1. Add MaybeUninit::drop.

    ManuallyDrop's documentation tells the user to use MaybeUninit instead
    when handling uninitialized data. However, the main functionality of
    ManuallyDrop (drop) was not available directly on MaybeUninit. Adding it
    makes it easier to switch from one to the other.
    m-ou-se committed Sep 8, 2020
    Configuration menu
    Copy the full SHA
    75e471a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    caef832 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2020

  1. Configuration menu
    Copy the full SHA
    656a17b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a14efd1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a94b2cb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    43c7a9b View commit details
    Browse the repository at this point in the history