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 #25

Merged
merged 3 commits into from
May 4, 2016

Commits on May 3, 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 3, 2016
    Configuration menu
    Copy the full SHA
    5bf846f View commit details
    Browse the repository at this point in the history

Commits on May 4, 2016

  1. Remove obsolete boost make_shared headers

    Pim Schellart authored and Pim Schellart committed May 4, 2016
    Configuration menu
    Copy the full SHA
    8283269 View commit details
    Browse the repository at this point in the history
  2. Reorder includes

    Pim Schellart authored and Pim Schellart committed May 4, 2016
    Configuration menu
    Copy the full SHA
    c22efd5 View commit details
    Browse the repository at this point in the history