switch from boost::{shared,weak}_ptr to std::{shared,weak}_ptr

This is mostly a simple lexical search+replace but the absence of operator< for
std::weak_ptr<T> leads to some complications, particularly with Evoral::Sequence
and ExportPortChannel.
This commit is contained in:
Paul Davis 2023-02-16 16:33:28 -07:00
parent 90c5524e7b
commit b35518e212
819 changed files with 9736 additions and 9709 deletions

View file

@ -28,7 +28,7 @@ namespace ARDOUR {
class VSTPluginUI : public PlugUIBase, public Gtk::VBox
{
public:
VSTPluginUI (boost::shared_ptr<ARDOUR::PlugInsertBase>, boost::shared_ptr<ARDOUR::VSTPlugin>);
VSTPluginUI (std::shared_ptr<ARDOUR::PlugInsertBase>, std::shared_ptr<ARDOUR::VSTPlugin>);
virtual ~VSTPluginUI ();
virtual int get_preferred_height ();
@ -45,7 +45,7 @@ protected:
virtual int get_XID () = 0;
boost::shared_ptr<ARDOUR::VSTPlugin> _vst;
std::shared_ptr<ARDOUR::VSTPlugin> _vst;
Gtk::Socket _socket;
virtual void top_box_allocated (Gtk::Allocation&) {}