Removed addtional code smells

This commit is contained in:
Andrea Bondavalli 2023-02-25 23:16:58 +01:00
parent 49a42f7ac7
commit a255f31dfd
3 changed files with 4 additions and 2 deletions

View File

@ -96,7 +96,7 @@ bool Browser::worker() {
BOOST_LOG_TRIVIAL(debug) BOOST_LOG_TRIVIAL(debug)
<< "browser:: refreshing SAP source " << it->id; << "browser:: refreshing SAP source " << it->id;
// annoucement, update last seen and announce period // annoucement, update last seen and announce period
auto last_update_ = last_update_ =
duration_cast<second_t>(steady_clock::now() - startup_).count(); duration_cast<second_t>(steady_clock::now() - startup_).count();
auto upd_source{*it}; auto upd_source{*it};
if ((last_update_ - upd_source.last_seen) != 0) { if ((last_update_ - upd_source.last_seen) != 0) {

View File

@ -39,7 +39,7 @@ namespace po = boost::program_options;
namespace postyle = boost::program_options::command_line_style; namespace postyle = boost::program_options::command_line_style;
namespace logging = boost::log; namespace logging = boost::log;
static std::string version("bondagit-1.6.2"); static const std::string version("bondagit-1.6.2");
static std::atomic<bool> terminate = false; static std::atomic<bool> terminate = false;
void termination_handler(int signum) { void termination_handler(int signum) {

View File

@ -38,6 +38,8 @@ struct AvahiLockGuard {
avahi_threaded_poll_unlock(poll_); avahi_threaded_poll_unlock(poll_);
} }
} }
AvahiLockGuard(const AvahiLockGuard&) = delete;
AvahiLockGuard& operator=(const AvahiLockGuard&) = delete;
private: private:
AvahiThreadedPoll* poll_{nullptr}; AvahiThreadedPoll* poll_{nullptr};