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

src: remove usage of std::shared_ptr<T>::unique() #47315

Commits on Mar 30, 2023

  1. src: remove usage of std::shared_ptr<T>::unique()

    `std::shared_ptr<T>::unique()` has been removed in C++20, so this change
    uses `std::shared_ptr<T>::use_count()` instead which is available in
    C++20.
    
    Fixes: nodejs#47311
    Signed-off-by: Darshan Sen <raisinten@gmail.com>
    RaisinTen committed Mar 30, 2023
    Configuration menu
    Copy the full SHA
    409158a View commit details
    Browse the repository at this point in the history