mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
Replace boost::bind with std::bind
This commit is contained in:
parent
09eeca09a9
commit
27c6276ff8
1 changed files with 2 additions and 2 deletions
|
|
@ -23,7 +23,7 @@ class Rx1
|
|||
public:
|
||||
Rx1 (Tx& sender)
|
||||
{
|
||||
sender.sig1.connect_same_thread (_connection, boost::bind (&Rx1::cb, this, _1));
|
||||
sender.sig1.connect_same_thread (_connection, std::bind (&Rx1::cb, this, _1));
|
||||
}
|
||||
|
||||
private:
|
||||
|
|
@ -87,7 +87,7 @@ class Rx2 : public PBD::ScopedConnectionList
|
|||
public:
|
||||
Rx2 (Tx& sender)
|
||||
{
|
||||
sender.sig1.connect (*this, &_ir, boost::bind (&Rx2::cb, this, _1), &event_loop);
|
||||
sender.sig1.connect (*this, &_ir, std::bind (&Rx2::cb, this, _1), &event_loop);
|
||||
}
|
||||
|
||||
private:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue