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 6 commits 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

Pim Schellart added 4 commits April 30, 2016 14:30
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
@@ -48,7 +48,7 @@

#include <boost/archive/text_oarchive.hpp>
#include <boost/archive/text_iarchive.hpp>
#include <boost/scoped_ptr.hpp>
#include <memory>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fix order

@pschella pschella merged commit a3a0b07 into master May 4, 2016
@ktlim ktlim deleted the tickets/DM-5879 branch August 25, 2018 06:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants