uncrustify libraries/AP_GPS/AP_GPS_Shim.h

This commit is contained in:
uncrustify 2012-08-16 23:19:44 -07:00 committed by Pat Hickey
parent cdaf2f923d
commit 5c24c373d0
1 changed files with 9 additions and 7 deletions

View File

@ -17,9 +17,11 @@
class AP_GPS_Shim : public GPS
{
public:
AP_GPS_Shim() : GPS(NULL) {}
AP_GPS_Shim() : GPS(NULL) {
}
virtual void init(enum GPS_Engine_Setting nav_setting = GPS_ENGINE_NONE) {};
virtual void init(enum GPS_Engine_Setting nav_setting = GPS_ENGINE_NONE) {
};
virtual bool read(void) {
bool updated = _updated;
_updated = false;