Remove minor warnings seen with GCC ARM toolchain
[Warning] Gap.h@152: 152:16: warning: enumeration value ‘GAP_EVENT_CONNECTED’ not handled in switch [-Wswitch] enumeration value ‘GAP_EVENT_DISCONNECTED’ not handled in switch [-Wswitch] [Warning] GattServer.h@78: In member function ‘void GattServer::handleEvent(GattServerEvents::gattEvent_e, uint16_t)’: enumeration value ‘GATT_EVENT_DATA_SENT’ not handled in switch [-Wswitch] [Warning] GattServer.h@78: In member function ‘void GattServer::handleEvent(GattServerEvents::gattEvent_e, uint16_t)’: enumeration value ‘GATT_EVENT_DATA_WRITTEN’ not handled in switch [-Wswitch] [Warning] GattServer.h@78: In member function ‘void GattServer::handleEvent(GattServerEvents::gattEvent_e, uint16_t)’: enumeration value ‘GATT_EVENT_READ_AUTHORIZATION_REQ’ not handled in switch [-Wswitch] [Warning] GattServer.h@78: In member function ‘void GattServer::handleEvent(GattServerEvents::gattEvent_e, uint16_t)’: enumeration value ‘GATT_EVENT_WRITE_AUTHORIZATION_REQ’ not handled in switch [-Wswitch]
This commit is contained in:
parent
343b248cf6
commit
83edad0129
2 changed files with 4 additions and 0 deletions
|
@ -156,6 +156,8 @@ public:
|
|||
onTimeout();
|
||||
}
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -91,6 +91,8 @@ protected:
|
|||
onConfirmationReceived(charHandle);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue