mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-11-25 11:34:53 +00:00
Code cleaning, initializations
This commit is contained in:
@@ -85,7 +85,7 @@ private:
|
||||
int fifo_items;
|
||||
int d_sock_raw;
|
||||
int d_udp_port;
|
||||
struct sockaddr_in si_me;
|
||||
struct sockaddr_in si_me{};
|
||||
std::string d_src_device;
|
||||
std::string d_origin_address;
|
||||
int d_udp_payload_size;
|
||||
|
||||
@@ -110,7 +110,7 @@ private:
|
||||
size_t unread_;
|
||||
|
||||
// lookup for scaling data
|
||||
boost::array<float, 0xff> lookup_;
|
||||
boost::array<float, 0xff> lookup_{};
|
||||
|
||||
// async read callback
|
||||
void handle_read(const boost::system::error_code &ec,
|
||||
|
||||
Reference in New Issue
Block a user