AP_GPS: Refactor get_singleton() to return a pointer
This commit is contained in:
parent
35bd143532
commit
27ad9ac3ca
@ -1573,7 +1573,7 @@ namespace AP {
|
||||
|
||||
AP_GPS &gps()
|
||||
{
|
||||
return AP_GPS::get_singleton();
|
||||
return *AP_GPS::get_singleton();
|
||||
}
|
||||
|
||||
};
|
||||
|
@ -64,8 +64,8 @@ public:
|
||||
AP_GPS(const AP_GPS &other) = delete;
|
||||
AP_GPS &operator=(const AP_GPS&) = delete;
|
||||
|
||||
static AP_GPS &get_singleton() {
|
||||
return *_singleton;
|
||||
static AP_GPS *get_singleton() {
|
||||
return _singleton;
|
||||
}
|
||||
|
||||
// GPS driver types
|
||||
|
Loading…
Reference in New Issue
Block a user