mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-01-20 22:17:03 +00:00
Remove unused data member
This commit is contained in:
parent
ba022cc5f7
commit
3fcc7b7f85
@ -87,7 +87,6 @@ ControlThread::ControlThread()
|
|||||||
{
|
{
|
||||||
configuration_ = std::make_shared<FileConfiguration>(FLAGS_c);
|
configuration_ = std::make_shared<FileConfiguration>(FLAGS_c);
|
||||||
}
|
}
|
||||||
delete_configuration_ = false;
|
|
||||||
restart_ = false;
|
restart_ = false;
|
||||||
init();
|
init();
|
||||||
}
|
}
|
||||||
@ -96,7 +95,6 @@ ControlThread::ControlThread()
|
|||||||
ControlThread::ControlThread(std::shared_ptr<ConfigurationInterface> configuration)
|
ControlThread::ControlThread(std::shared_ptr<ConfigurationInterface> configuration)
|
||||||
{
|
{
|
||||||
configuration_ = std::move(configuration);
|
configuration_ = std::move(configuration);
|
||||||
delete_configuration_ = false;
|
|
||||||
restart_ = false;
|
restart_ = false;
|
||||||
init();
|
init();
|
||||||
}
|
}
|
||||||
|
@ -194,10 +194,9 @@ private:
|
|||||||
int msqid_;
|
int msqid_;
|
||||||
|
|
||||||
bool receiver_on_standby_;
|
bool receiver_on_standby_;
|
||||||
bool pre_2009_file_; // to override the system time to postprocess old gnss records and avoid wrong week rollover
|
|
||||||
bool stop_;
|
bool stop_;
|
||||||
bool restart_;
|
bool restart_;
|
||||||
bool delete_configuration_;
|
bool pre_2009_file_; // to override the system time to postprocess old gnss records and avoid wrong week rollover
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // GNSS_SDR_CONTROL_THREAD_H
|
#endif // GNSS_SDR_CONTROL_THREAD_H
|
||||||
|
Loading…
Reference in New Issue
Block a user