Merge pull request #13653 from jrobeson/ble-incorrectly-qualified-namespace

Use impl namespace in GattServer att_cb registration, not ble
pull/13663/head
Martin Kojtal 2020-09-23 10:05:06 +01:00 committed by GitHub
commit d896ea34f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -600,7 +600,7 @@ void BLEInstanceBase::stack_setup()
#if BLE_FEATURE_GATT_CLIENT
AttRegister((attCback_t) impl::PalAttClient::att_client_handler);
#else
AttRegister((attCback_t) ble::GattServer::att_cb);
AttRegister((attCback_t) impl::GattServer::att_cb);
#endif // BLE_FEATURE_GATT_CLIENT
#endif
}