mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-08-06 22:04:07 +00:00
Improve includes with IWYU
Fix for old Boost
This commit is contained in:
parent
c82c7225dd
commit
e6cfbadbf3
@ -32,10 +32,17 @@
|
||||
*/
|
||||
|
||||
#include "gnss_sdr_supl_client.h"
|
||||
#include "GPS_L1_CA.h"
|
||||
#include <boost/archive/xml_iarchive.hpp>
|
||||
#include <boost/archive/xml_oarchive.hpp>
|
||||
#include <boost/serialization/map.hpp>
|
||||
#include <glog/logging.h>
|
||||
#include <pugixml.hpp>
|
||||
#include <cmath>
|
||||
#include <utility>
|
||||
#include <cmath> // for pow
|
||||
#include <cstring> // for strcpy
|
||||
#include <exception> // for exception
|
||||
#include <iostream> // for cerr
|
||||
#include <utility> // for pair
|
||||
|
||||
Gnss_Sdr_Supl_Client::Gnss_Sdr_Supl_Client()
|
||||
{
|
||||
|
@ -38,7 +38,6 @@ extern "C"
|
||||
{
|
||||
#include "supl.h"
|
||||
}
|
||||
#include "GPS_L1_CA.h"
|
||||
#include "agnss_ref_location.h"
|
||||
#include "agnss_ref_time.h"
|
||||
#include "galileo_almanac.h"
|
||||
@ -54,9 +53,6 @@ extern "C"
|
||||
#include "gps_ephemeris.h"
|
||||
#include "gps_iono.h"
|
||||
#include "gps_utc_model.h"
|
||||
#include <boost/archive/xml_iarchive.hpp>
|
||||
#include <boost/archive/xml_oarchive.hpp>
|
||||
#include <boost/serialization/map.hpp>
|
||||
#include <fstream>
|
||||
#include <map>
|
||||
#include <string>
|
||||
|
@ -60,7 +60,7 @@
|
||||
#include "rtklib_conversions.h" // for alm_to_rtklib
|
||||
#include "rtklib_ephemeris.h" // for alm2pos, eph2pos
|
||||
#include "rtklib_rtkcmn.h" // for utc2gpst
|
||||
#include <boost/lexical_cast/bad_lexical_cast.hpp> // for bad_lexical_cast
|
||||
#include <boost/lexical_cast.hpp> // for bad_lexical_cast
|
||||
#include <glog/logging.h> // for LOG
|
||||
#include <gnuradio/message.h> // for message::sptr
|
||||
#include <pmt/pmt.h> // for make_any
|
||||
|
@ -32,9 +32,10 @@
|
||||
|
||||
#include "galileo_navigation_message.h"
|
||||
#include <boost/crc.hpp> // for boost::crc_basic, boost::crc_optimal
|
||||
#include <boost/dynamic_bitset.hpp>
|
||||
#include <glog/logging.h>
|
||||
#include <iostream>
|
||||
#include <boost/dynamic_bitset.hpp> // for boost::dynamic_bitset
|
||||
#include <glog/logging.h> // for DLOG
|
||||
#include <algorithm> // for reverse
|
||||
#include <iostream> // for operator<<
|
||||
|
||||
|
||||
using CRC_Galileo_INAV_type = boost::crc_optimal<24, 0x1864CFBu, 0x0, 0x0, false, false>;
|
||||
|
@ -33,7 +33,6 @@
|
||||
#define GNSS_SDR_GPS_EPHEMERIS_H_
|
||||
|
||||
|
||||
#include <boost/date_time/posix_time/posix_time.hpp>
|
||||
#include <boost/serialization/nvp.hpp>
|
||||
#include <cstdint>
|
||||
#include <map>
|
||||
|
@ -32,8 +32,9 @@ m * \file gps_navigation_message.cc
|
||||
|
||||
#include "gps_navigation_message.h"
|
||||
#include "gnss_satellite.h"
|
||||
#include <cmath>
|
||||
#include <iostream>
|
||||
#include <cmath> // for fmod, abs, floor
|
||||
#include <cstring> // for memcpy
|
||||
#include <iostream> // for operator<<, cout, endl
|
||||
|
||||
|
||||
void Gps_Navigation_Message::reset()
|
||||
|
@ -41,7 +41,7 @@
|
||||
#include <cstdint>
|
||||
#include <map>
|
||||
#include <string>
|
||||
#include <utility>
|
||||
#include <utility> // for pair
|
||||
#include <vector>
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user