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:
Peter Barker 2023-02-03 09:58:40 +11:00 committed by Peter Barker
parent 90f41c72f4
commit 60940593ee
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ private:
RC_Channels_Rover &rc() { return g2.rc_channels; }
// The rover's current location
struct Location current_loc;
Location current_loc;
// Camera
#if AP_CAMERA_ENABLED