diff --git a/src/libutil/config.hh b/src/libutil/config.hh index 75f1d4e8894..986c62f7dcf 100644 --- a/src/libutil/config.hh +++ b/src/libutil/config.hh @@ -223,20 +223,6 @@ template struct SettingHandler { std::function fun = [](T & val) {}; - - SettingHandler() = default; - - SettingHandler(std::function && fun) - : fun(std::move(fun)) - { } - - operator bool() const { - if (fun) { - return true; - } else { - return false; - } - } }; /**