From bcd77b4cca513ce69ba405e87a981c18ca9441d9 Mon Sep 17 00:00:00 2001 From: uncrustify Date: Thu, 16 Aug 2012 23:19:44 -0700 Subject: [PATCH] uncrustify libraries/AP_GPS/AP_GPS_Auto.h --- libraries/AP_GPS/AP_GPS_Auto.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/libraries/AP_GPS/AP_GPS_Auto.h b/libraries/AP_GPS/AP_GPS_Auto.h index 59f59f5c8d..a6b6606eef 100644 --- a/libraries/AP_GPS/AP_GPS_Auto.h +++ b/libraries/AP_GPS/AP_GPS_Auto.h @@ -24,28 +24,28 @@ public: AP_GPS_Auto(FastSerial *s, GPS **gps); /// Dummy init routine, does nothing - virtual void init(enum GPS_Engine_Setting nav_setting = GPS_ENGINE_NONE); + virtual void init(enum GPS_Engine_Setting nav_setting = GPS_ENGINE_NONE); /// Detect and initialise the attached GPS unit. Updates the /// pointer passed into the constructor when a GPS is detected. /// - virtual bool read(void); + virtual bool read(void); private: /// Copy of the port, known at construction time to be a real FastSerial port. - FastSerial *_fs; + FastSerial * _fs; /// global GPS driver pointer, updated by auto-detection /// - GPS **_gps; + GPS ** _gps; /// low-level auto-detect routine /// - GPS *_detect(void); + GPS * _detect(void); - static const prog_char _mtk_set_binary[]; - static const prog_char _sirf_set_binary[]; + static const prog_char _mtk_set_binary[]; + static const prog_char _sirf_set_binary[]; - enum GPS_Engine_Setting _nav_setting; + enum GPS_Engine_Setting _nav_setting; }; #endif