Update WicedInterface.h

Fix the styling error
pull/14280/head
Martin Kojtal 2021-02-14 19:35:37 +00:00 committed by GitHub
parent 01875ebb09
commit 2f09d7c057
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -29,8 +29,7 @@
/** WicedInterface class
* Implementation of the NetworkStack for the Wiced
*/
class WicedInterface : public WiFiInterface, public EMACInterface
{
class WicedInterface : public WiFiInterface, public EMACInterface {
public:
WicedInterface(
@ -80,7 +79,8 @@ public:
* @param channel Channel on which the connection is to be made, or 0 for any (Default: 0)
* @return Not supported, returns NSAPI_ERROR_UNSUPPORTED
*/
nsapi_error_t set_channel(uint8_t channel) {
nsapi_error_t set_channel(uint8_t channel)
{
if (channel != 0) {
return NSAPI_ERROR_UNSUPPORTED;
}