[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:
@@ -46,7 +46,7 @@ namespace era {
|
||||
|
||||
class damage_visitor {
|
||||
public:
|
||||
typedef boost::shared_ptr<damage_visitor> ptr;
|
||||
typedef std::shared_ptr<damage_visitor> ptr;
|
||||
|
||||
virtual ~damage_visitor() {}
|
||||
|
||||
@@ -60,7 +60,7 @@ namespace era {
|
||||
|
||||
class writeset_visitor {
|
||||
public:
|
||||
typedef boost::shared_ptr<writeset_visitor> ptr;
|
||||
typedef std::shared_ptr<writeset_visitor> ptr;
|
||||
|
||||
virtual ~writeset_visitor() {}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user