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

Backport MaybeUninit changes to 0.6 #180

Merged
merged 3 commits into from Nov 5, 2019
Merged

Commits on Nov 4, 2019

  1. Use MaybeUninit for storage of inline items.

    This is a backport of servo#162 to the smallvec 0.6 branch. To avoid bumping the
    minimum Rust version, the `maybe-uninit` crate is used in place of
    `std::mem::MaybeUninit`.  To avoid breaking changes, the `Array::ptr` and
    `ptr_mut` methods are retained but are no longer used, and the API to
    `from_buf_and_len_unchecked` is unchanged.
    Thom Chiovoloni authored and mbrubeck committed Nov 4, 2019
    Copy the full SHA
    e64afc8 View commit details
    Browse the repository at this point in the history
  2. Run miri in CI

    Thom Chiovoloni authored and mbrubeck committed Nov 4, 2019
    Copy the full SHA
    26ea2ca View commit details
    Browse the repository at this point in the history
  3. Add a test for servo#139.

    Works now on trunk.
    
    Closes servo#139
    emilio authored and mbrubeck committed Nov 4, 2019
    Copy the full SHA
    58d5416 View commit details
    Browse the repository at this point in the history