Skip to content

Commit 64f9358

Browse files
fix namespace errors
1 parent a0df7fc commit 64f9358

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

features/FEATURE_BLE/targets/TARGET_CORDIO/SimpleEventQueue.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ namespace cordio {
2929
/**
3030
* Simple implementation of the pal::EventQueue.
3131
*/
32-
struct SimpleEventQueue : EventQueue {
32+
struct SimpleEventQueue : pal::EventQueue {
3333

3434
typedef mbed::Callback<void()> event_t;
3535

@@ -52,7 +52,7 @@ struct SimpleEventQueue : EventQueue {
5252
*
5353
* @param ble_id Id of the BLE instance using that event queue.
5454
*/
55-
void initialize(BLEInstanceBase* ble_base, BLE::InstanceID_t ble_id)
55+
void initialize(BLEInstanceBase* ble_base, ::BLE::InstanceID_t ble_id)
5656
{
5757
_ble_base = ble_base;
5858
_ble_instance_id = ble_id;
@@ -140,7 +140,7 @@ struct SimpleEventQueue : EventQueue {
140140
}
141141

142142
BLEInstanceBase* _ble_base;
143-
BLE::InstanceID_t _ble_instance_id;
143+
::BLE::InstanceID_t _ble_instance_id;
144144
EventNode* _events;
145145
};
146146

0 commit comments

Comments
 (0)