AC_Avoidance: 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:38 +11:00 committed by Peter Barker
parent 34518e433f
commit 86d2f07f3d
1 changed files with 1 additions and 1 deletions

View File

@ -240,7 +240,7 @@ void AP_OAPathPlanner::avoidance_thread()
bool origin_set = false; bool origin_set = false;
while (!origin_set) { while (!origin_set) {
hal.scheduler->delay(500); hal.scheduler->delay(500);
struct Location ekf_origin {}; Location ekf_origin {};
{ {
WITH_SEMAPHORE(AP::ahrs().get_semaphore()); WITH_SEMAPHORE(AP::ahrs().get_semaphore());
origin_set = AP::ahrs().get_origin(ekf_origin); origin_set = AP::ahrs().get_origin(ekf_origin);