From 27c6276ff88584f5abe68d504f3d201081e7a3a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Dom=C3=ADnguez?= Date: Sun, 17 Nov 2024 20:19:33 +0100 Subject: [PATCH] Replace boost::bind with std::bind --- tools/signal-test/signal-test.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/signal-test/signal-test.cc b/tools/signal-test/signal-test.cc index 77a3acafd2..e8dc03d1d2 100644 --- a/tools/signal-test/signal-test.cc +++ b/tools/signal-test/signal-test.cc @@ -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: