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

Replace auto_ptr with scoped_ptr #2037

Merged

Commits on Oct 24, 2017

  1. [c++] replace auto_ptr with unique_ptr

    C++11 deprecated auto_ptr and c++17 removes it.
    moriarty committed Oct 24, 2017
    Configuration menu
    Copy the full SHA
    436f733 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2017

  1. [c++] use boost/move/unique_ptr for older c++

    The previous commit, replaced the removed auto_ptr with C++11
    unique_ptr.
    PCL supports older C++ versions, so Boost.Move unique_ptr is needed.
    moriarty committed Oct 25, 2017
    Configuration menu
    Copy the full SHA
    80ec024 View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2017

  1. [c++] replace auto_ptr with boost::scoped_ptr

    auto_ptr is removed with C++17.
    
    C++11 std::unique_ptr and boost::move::unique_ptr are not old enough for all platforms supported by PCL.
    moriarty authored Nov 15, 2017
    Configuration menu
    Copy the full SHA
    bed968c View commit details
    Browse the repository at this point in the history