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

DM-5879 Remove use of Boost smart pointers throughout the Science Pipelines #15

Merged
merged 1 commit into from
May 4, 2016

Commits on May 4, 2016

  1. Migrate to std::shared_ptr

    Makes the following replacements:
    
    - boost::shared_ptr -> std::shared_ptr
    - boost::weak_ptr -> std::weak_ptr
    - boost::static_pointer_cast -> std::static_pointer_cast
    - boost::dynamic_pointer_cast -> std::dynamic_pointer_cast
    - boost::const_pointer_cast -> std::const_pointer_cast
    - boost::reinterpret_pointer_cast -> std::reinterpret_pointer_cast
    - boost::enamble_shared_from_this -> std::enable_shared_from_this
    - boost pointer related includes -> standard library memory
    Pim Schellart authored and Pim Schellart committed May 4, 2016
    Configuration menu
    Copy the full SHA
    1d71e9d View commit details
    Browse the repository at this point in the history