Fix warnings about unhandled enum value in switch [-Wswitch]
Fixes GCC 5 warnings of the form: core/io/http_client.cpp:288:9: warning: enumeration value 'STATUS_SSL_HANDSHAKE_ERROR' not handled in switch [-Wswitch] core/io/marshalls.cpp:806:9: warning: enumeration value 'AABB' not handled in switch [-Wswitch] Those can be trivial cases where adding a default fallback is the solution, or more complex issues/hidden bugs where missed values are actually meant to be handled.
This commit is contained in:
parent
4cf5bb0276
commit
7b081a7fc8
49 changed files with 246 additions and 85 deletions
|
|
@ -374,6 +374,7 @@ Error HTTPClient::poll() {
|
|||
} break;
|
||||
}
|
||||
} break;
|
||||
case STATUS_BODY:
|
||||
case STATUS_CONNECTED: {
|
||||
// Check if we are still connected
|
||||
if (ssl) {
|
||||
|
|
@ -480,7 +481,8 @@ Error HTTPClient::poll() {
|
|||
case STATUS_DISCONNECTED: {
|
||||
return ERR_UNCONFIGURED;
|
||||
} break;
|
||||
case STATUS_CONNECTION_ERROR: {
|
||||
case STATUS_CONNECTION_ERROR:
|
||||
case STATUS_SSL_HANDSHAKE_ERROR: {
|
||||
return ERR_CONNECTION_ERROR;
|
||||
} break;
|
||||
case STATUS_CANT_CONNECT: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue