[all] Switch from boost::shared_ptr -> std::shared_ptr.
Shared_ptr has moved into the standard library since these tools were first written.
This commit is contained in:
@@ -19,15 +19,13 @@
|
||||
#ifndef REF_COUNTER_H
|
||||
#define REF_COUNTER_H
|
||||
|
||||
#include <boost/shared_ptr.hpp>
|
||||
|
||||
//----------------------------------------------------------------
|
||||
|
||||
namespace persistent_data {
|
||||
template <typename ValueType>
|
||||
class ref_counter {
|
||||
public:
|
||||
boost::shared_ptr<ref_counter<ValueType> > ptr;
|
||||
std::shared_ptr<ref_counter<ValueType> > ptr;
|
||||
|
||||
virtual ~ref_counter() {}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user