Skip to content

Commit

Permalink
Merge pull request #13653 from jrobeson/ble-incorrectly-qualified-nam…
Browse files Browse the repository at this point in the history
…espace

Use impl namespace in GattServer att_cb registration, not ble
  • Loading branch information
0xc0170 authored Sep 23, 2020
2 parents 6642394 + fac3ebb commit d896ea3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit d896ea3

Please sign in to comment.