Cellular: Fix astyle

pull/9569/head
Ari Parkkila 2019-01-31 04:15:01 -08:00
parent 50b5f57c28
commit 47a8f24b1e
4 changed files with 10 additions and 10 deletions

View File

@ -92,12 +92,12 @@ public:
return true;
};
NetworkStack * get_stack()
NetworkStack *get_stack()
{
return NULL;
};
const char * get_ip_address()
const char *get_ip_address()
{
return NULL;
};
@ -130,12 +130,12 @@ public:
};
const char * get_netmask()
const char *get_netmask()
{
return NULL;
};
const char * get_gateway()
const char *get_gateway()
{
return NULL;
};

View File

@ -51,7 +51,7 @@ protected:
return return_value;
};
virtual void data_received(){};
virtual void data_received() {};
virtual void attach(void (*callback)(void *), void *data) {};
};