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

Merged
merged 1 commit into from May 4, 2016

Conversation

pschella
Copy link

@pschella pschella commented May 4, 2016

Makes the following replacements:

  • boost::scoped_ptr -> std::unique_ptr
  • 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

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
@pschella pschella merged commit 14e03d4 into master May 4, 2016
@ktlim ktlim deleted the tickets/DM-5879 branch August 25, 2018 05:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
1 participant