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

Fix undefined in format-test #1349

Merged
merged 1 commit into from
Oct 8, 2019
Merged

Fix undefined in format-test #1349

merged 1 commit into from
Oct 8, 2019

Commits on Oct 8, 2019

  1. Fix undefined in format-test

    When `MoveCtor` performs `check_move_buffer`, the buffer allocator becomes null,
    but then `MoveCtor` attempts to use it to allocate a dynamic buffer. This
    succeeds nevertheless because a typical `std::allocator<char>::allocate` does
    not use `this`, so it does not crash when `this` is null.
    
    Fixes fmtlib#1344
    orivej committed Oct 8, 2019
    Configuration menu
    Copy the full SHA
    5c4a99d View commit details
    Browse the repository at this point in the history