mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-02-22 14:00:13 +00:00
Fix for ARM
This commit is contained in:
parent
ecf98fc159
commit
75aa6a3c5d
@ -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)
|
||||
|
@ -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);
|
||||
|
||||
|
@ -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{};
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user