From: Francis Dupont Date: Wed, 24 Jun 2015 14:10:06 +0000 (+0200) Subject: [3920] Removed redundant data_ declaration from derived DControllerBase class X-Git-Tag: trac3915a_base~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c29466d7a240dffda845fd51cb57eda79c328d83;p=thirdparty%2Fkea.git [3920] Removed redundant data_ declaration from derived DControllerBase class --- diff --git a/src/bin/d2/d_controller.cc b/src/bin/d2/d_controller.cc index 1cbd9aa598..1c8f1b164e 100644 --- a/src/bin/d2/d_controller.cc +++ b/src/bin/d2/d_controller.cc @@ -44,7 +44,7 @@ DControllerBase::DControllerBase(const char* app_name, const char* bin_name) : app_name_(app_name), bin_name_(bin_name), verbose_(false), spec_file_name_(""), io_service_(new isc::asiolink::IOService()), - signal_set_(), io_signal_queue_() { + io_signal_queue_() { } void diff --git a/src/bin/d2/d_controller.h b/src/bin/d2/d_controller.h index 61731872c5..06ff23b228 100644 --- a/src/bin/d2/d_controller.h +++ b/src/bin/d2/d_controller.h @@ -23,7 +23,6 @@ #include #include #include -#include #include #include @@ -500,9 +499,6 @@ private: /// @brief Shared pointer to an IOService object, used for ASIO operations. asiolink::IOServicePtr io_service_; - /// @brief Set of registered signals to handle. - util::SignalSetPtr signal_set_; - /// @brief Queue for propagating caught signals to the IOService. IOSignalQueuePtr io_signal_queue_;