Avoid -Wswitch warnings in wxWebRequest test

No real changes, just suppress the warnings about not handling all
states in a switch.
This commit is contained in:
Vadim Zeitlin 2020-12-12 18:12:44 +01:00
parent 6bdab7b3c8
commit fcaccbf12c

View File

@ -75,6 +75,10 @@ public:
case wxWebRequest::State_Cancelled:
loop.Exit();
break;
case wxWebRequest::State_Idle:
case wxWebRequest::State_Active:
break;
}
}