mirror of https://github.com/ArduPilot/ardupilot
AP_GPS: unify singleton naming to _singleton and get_singleton()
This commit is contained in:
parent
818c828a4a
commit
5d66c3ed62
|
@ -561,7 +561,7 @@ AP_GPS::GPS_Status AP_GPS::highest_supported_status(uint8_t instance) const
|
||||||
|
|
||||||
bool AP_GPS::should_df_log() const
|
bool AP_GPS::should_df_log() const
|
||||||
{
|
{
|
||||||
AP_Logger *instance = AP_Logger::instance();
|
AP_Logger *instance = AP_Logger::get_singleton();
|
||||||
if (instance == nullptr) {
|
if (instance == nullptr) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -1546,7 +1546,7 @@ namespace AP {
|
||||||
|
|
||||||
AP_GPS &gps()
|
AP_GPS &gps()
|
||||||
{
|
{
|
||||||
return AP_GPS::gps();
|
return AP_GPS::get_singleton();
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -71,7 +71,7 @@ public:
|
||||||
AP_GPS(const AP_GPS &other) = delete;
|
AP_GPS(const AP_GPS &other) = delete;
|
||||||
AP_GPS &operator=(const AP_GPS&) = delete;
|
AP_GPS &operator=(const AP_GPS&) = delete;
|
||||||
|
|
||||||
static AP_GPS &gps() {
|
static AP_GPS &get_singleton() {
|
||||||
return *_singleton;
|
return *_singleton;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue