From 78403cf71e5a8a4b5b7818427f378a00208ce8cf Mon Sep 17 00:00:00 2001 From: Steve Kondik Date: Sun, 15 Nov 2015 22:34:55 -0800 Subject: [PATCH] gps: Fix OSS build * Add fix from Scott/Keith for creating a forward declaration of the needed proprietary parts. Change-Id: Ic958cd94b926048f4c9161884b61273bd4d93503 --- gps/core/UlpProxyBase.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gps/core/UlpProxyBase.h b/gps/core/UlpProxyBase.h index 5d93e2b..2e92bed 100644 --- a/gps/core/UlpProxyBase.h +++ b/gps/core/UlpProxyBase.h @@ -30,7 +30,10 @@ #define ULP_PROXY_BASE_H #include -#include "fused_location_extended.h" + +struct FlpExtLocation_s; +struct FlpExtBatchOptions; + namespace loc_core { class LocAdapterBase; @@ -101,7 +104,7 @@ public: (void)active; return false; } - inline virtual bool reportPositions(const FlpExtLocation* locations, + inline virtual bool reportPositions(const struct FlpExtLocation_s* locations, int32_t number_of_locations) { (void)locations; (void)number_of_locations;