mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-14 20:20:35 +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);
|
||||
}
|
||||
delete_configuration_ = false;
|
||||
restart_ = false;
|
||||
init();
|
||||
}
|
||||
@ -96,7 +95,6 @@ ControlThread::ControlThread()
|
||||
ControlThread::ControlThread(std::shared_ptr<ConfigurationInterface> configuration)
|
||||
{
|
||||
configuration_ = std::move(configuration);
|
||||
delete_configuration_ = false;
|
||||
restart_ = false;
|
||||
init();
|
||||
}
|
||||
|
@ -194,10 +194,9 @@ private:
|
||||
int msqid_;
|
||||
|
||||
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 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
|
||||
|
Loading…
Reference in New Issue
Block a user