1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-06-27 23:43:16 +00:00

Fix for ARM

This commit is contained in:
Carles Fernandez 2019-07-29 20:14:31 +02:00
parent ecf98fc159
commit 75aa6a3c5d
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D
3 changed files with 1 additions and 3 deletions

View File

@ -83,7 +83,6 @@ target_link_libraries(pvt_libs
Gflags::gflags
Glog::glog
Matio::matio
Volkgnsssdr::volkgnsssdr
)
get_filename_component(PROTO_INCLUDE_HEADERS ${PROTO_HDRS} DIRECTORY)

View File

@ -443,7 +443,7 @@ bool Rtklib_Solver::get_PVT(const std::map<int, Gnss_Synchro> &gnss_observables_
int valid_obs = 0; // valid observations counter
int glo_valid_obs = 0; // GLONASS L1/L2 valid observations counter
obs_data.fill({});
std::array<obsd_t, MAXOBS> obs_data{};
std::vector<eph_t> eph_data(MAXOBS);
std::vector<geph_t> geph_data(MAXOBS);

View File

@ -135,7 +135,6 @@ private:
bool d_flag_dump_mat_enabled;
int d_nchannels; // Number of available channels for positioning
std::array<double, 4> dop_{};
std::array<obsd_t, MAXOBS> obs_data{};
Monitor_Pvt monitor_pvt{};
};