[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:
@@ -111,7 +111,7 @@ namespace {
|
||||
|
||||
class command {
|
||||
public:
|
||||
typedef boost::shared_ptr<command> ptr;
|
||||
typedef std::shared_ptr<command> ptr;
|
||||
|
||||
virtual ~command() {}
|
||||
virtual void exec(strings const &args, ostream &out) = 0;
|
||||
|
||||
Reference in New Issue
Block a user