Browse Source

AP_LandingGear: make singleton a pointer

this allows common code for rover and sub
master
Andrew Tridgell 6 years ago
parent
commit
2bab144eca
  1. 4
      libraries/AP_LandingGear/AP_LandingGear.h

4
libraries/AP_LandingGear/AP_LandingGear.h

@ -35,8 +35,8 @@ public: @@ -35,8 +35,8 @@ public:
AP_LandingGear &operator=(const AP_LandingGear&) = delete;
// get singleton instance
static AP_LandingGear &instance(void) {
return *_singleton;
static AP_LandingGear *instance(void) {
return _singleton;
}
// Gear command modes

Loading…
Cancel
Save