Remove unused data member

This commit is contained in:
Carles Fernandez 2020-06-24 11:45:01 +02:00
parent ba022cc5f7
commit 3fcc7b7f85
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D
2 changed files with 1 additions and 4 deletions

View File

@ -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();
}

View File

@ -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