AP_LandingGear: unify singleton naming to _singleton and get_singleton()

This commit is contained in:
Tom Pittenger 2019-02-10 10:05:37 -08:00 committed by Tom Pittenger
parent 21db5e1a5c
commit cf2723458d
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ public:
AP_LandingGear &operator=(const AP_LandingGear&) = delete;
// get singleton instance
static AP_LandingGear *instance(void) {
static AP_LandingGear *get_singleton(void) {
return _singleton;
}