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

Use box syntax instead of Box::new in Mutex::remutex on Windows #49646

Merged
merged 1 commit into from
Apr 16, 2018

Commits on Apr 4, 2018

  1. Use box syntax instead of Box::new in Mutex::remutex on Windows

    The Box::new(mem::uninitialized()) pattern actually actively copies
    uninitialized bytes from the stack into the box, which is a waste of
    time. Using the box syntax instead avoids the useless copy.
    glandium committed Apr 4, 2018
    Configuration menu
    Copy the full SHA
    4577da7 View commit details
    Browse the repository at this point in the history