[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:
@@ -10,7 +10,7 @@
|
||||
namespace persistent_data {
|
||||
namespace btree_detail {
|
||||
struct damage {
|
||||
typedef boost::shared_ptr<damage> ptr;
|
||||
typedef std::shared_ptr<damage> ptr;
|
||||
|
||||
damage(run<uint64_t> lost_keys,
|
||||
std::string const &desc)
|
||||
|
||||
Reference in New Issue
Block a user