mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
Rover: avoid using struct Location
clang reports this could be a problem when compiling under some EABIs. Remove it from most places as it is just noise, replace with class where we want to avoid including Location.h
This commit is contained in:
parent
90f41c72f4
commit
60940593ee
@ -156,7 +156,7 @@ private:
|
|||||||
RC_Channels_Rover &rc() { return g2.rc_channels; }
|
RC_Channels_Rover &rc() { return g2.rc_channels; }
|
||||||
|
|
||||||
// The rover's current location
|
// The rover's current location
|
||||||
struct Location current_loc;
|
Location current_loc;
|
||||||
|
|
||||||
// Camera
|
// Camera
|
||||||
#if AP_CAMERA_ENABLED
|
#if AP_CAMERA_ENABLED
|
||||||
|
Loading…
Reference in New Issue
Block a user