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

Update Allocator trait implementation to compile on nightly #95

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Commits on Feb 18, 2021

  1. Basic renames, type signatures, and formatting

    Ran `cargo fmt` and renamed AllocErr to AllocError. The main rename
    was updating the Alloc trait (now the Allocator trait) and
    associated methods.
    rusty122 committed Feb 18, 2021
    Configuration menu
    Copy the full SHA
    86a281e View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2021

  1. Update Allocator API implementation to compile

    Includes more renaming missed in the previous commit.
    The allocate method needs to return a NonNull<[u8]>, so this commit
    updates bunch of callsites to handle the returned allocation correctly.
    Also cleaned up some alignment asserts for consistency (0 is not a power
    of 2, so some of the existing asserts were extraneous).
    rusty122 committed Mar 13, 2021
    Configuration menu
    Copy the full SHA
    0197cd8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b8858d9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d26b34c View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2021

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