mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-15 12:40:35 +00:00
Fix redefinition of ofstream
This commit is contained in:
parent
79ae0a6c9d
commit
366401a595
@ -509,7 +509,7 @@ bool RtklibPvt::save_assistance_to_XML()
|
||||
std::ofstream ofs;
|
||||
try
|
||||
{
|
||||
std::ofstream ofs(eph_xml_filename_.c_str(), std::ofstream::trunc | std::ofstream::out);
|
||||
ofs.open(eph_xml_filename_.c_str(), std::ofstream::trunc | std::ofstream::out);
|
||||
boost::archive::xml_oarchive xml(ofs);
|
||||
xml << boost::serialization::make_nvp("GNSS-SDR_ephemeris_map", eph_map);
|
||||
LOG(INFO) << "Saved GPS L1 Ephemeris map data";
|
||||
|
Loading…
Reference in New Issue
Block a user