mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
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:
parent
90c5524e7b
commit
b35518e212
819 changed files with 9736 additions and 9709 deletions
|
|
@ -55,10 +55,10 @@ private:
|
|||
void drop_references ();
|
||||
void clear_all_stats ();
|
||||
void sort_by_stats (bool);
|
||||
void add_processor_to_display (boost::weak_ptr<ARDOUR::Processor>, std::string const&);
|
||||
void add_pluginsert_to_display (boost::shared_ptr<ARDOUR::PlugInsertBase>, std::string const&);
|
||||
void clear_processor_stats (boost::weak_ptr<ARDOUR::Processor>);
|
||||
void clear_pluginsert_stats (boost::shared_ptr<ARDOUR::PlugInsertBase>);
|
||||
void add_processor_to_display (std::weak_ptr<ARDOUR::Processor>, std::string const&);
|
||||
void add_pluginsert_to_display (std::shared_ptr<ARDOUR::PlugInsertBase>, std::string const&);
|
||||
void clear_processor_stats (std::weak_ptr<ARDOUR::Processor>);
|
||||
void clear_pluginsert_stats (std::shared_ptr<ARDOUR::PlugInsertBase>);
|
||||
|
||||
Gtk::ScrolledWindow _scroller;
|
||||
Gtk::VBox _box;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue