diff options
author | Sven Gothel <[email protected]> | 2022-05-23 04:21:54 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2022-05-23 04:21:54 +0200 |
commit | bf80c4778ae668394c9f0c7b60ae83c7f21e73e5 (patch) | |
tree | 39ffdd3830ccdc1caa67980650444d3dfe283e99 /trial | |
parent | 4a35d8c9450fe1f6a61fdf30aeb6f944244dc884 (diff) |
Bump jaulib v0.10.1-1-g6eea830 and adapt to minor changes
Diffstat (limited to 'trial')
-rw-r--r-- | trial/direct_bt/dbt_endpoint.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trial/direct_bt/dbt_endpoint.hpp b/trial/direct_bt/dbt_endpoint.hpp index 217ad43b..129fdd8a 100644 --- a/trial/direct_bt/dbt_endpoint.hpp +++ b/trial/direct_bt/dbt_endpoint.hpp @@ -125,7 +125,7 @@ class DBTEndpoint { static ChangedAdapterSetCallback initChangedAdapterSetListener(const BTManagerRef& manager, std::vector<DBTEndpointRef> endpts) { const std::lock_guard<std::mutex> lock(mtx_cas_endpts); // RAII-style acquire and relinquish via destructor cas_endpts = std::move( endpts ); - ChangedAdapterSetCallback casc = jau::bindPlainFunc(&DBTEndpoint::myChangedAdapterSetFunc); + ChangedAdapterSetCallback casc = jau::bindFreeFunc(&DBTEndpoint::myChangedAdapterSetFunc); manager->addChangedAdapterSetCallback(casc); for(DBTEndpointRef endpt : cas_endpts ) { REQUIRE( nullptr != endpt->getAdapter() ); |