Merge pull request #9569 from AriParkkila/fix-astyle

Cellular: Fix astyle
pull/9568/head
Martin Kojtal 2019-02-01 08:24:23 +01:00 committed by GitHub
commit b2d30d422d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 10 deletions

View File

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

View File

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