diff --git a/src/common/command_line.h b/src/common/command_line.h index 681eb903b..9c304fbda 100644 --- a/src/common/command_line.h +++ b/src/common/command_line.h @@ -219,19 +219,6 @@ namespace command_line description.add_options()(arg.name, boost::program_options::bool_switch(), arg.description); } - template - boost::program_options::basic_parsed_options parse_command_line(int argc, const charT* const argv[], - const boost::program_options::options_description& desc, bool allow_unregistered = false) - { - auto parser = boost::program_options::command_line_parser(argc, argv); - parser.options(desc); - if (allow_unregistered) - { - parser.allow_unregistered(); - } - return parser.run(); - } - template bool handle_error_helper(const boost::program_options::options_description& desc, F parser) { diff --git a/src/common/download.cpp b/src/common/download.cpp index 859c80219..fd8e11478 100644 --- a/src/common/download.cpp +++ b/src/common/download.cpp @@ -274,20 +274,6 @@ namespace tools return control; } - bool download_finished(const download_async_handle &control) - { - CHECK_AND_ASSERT_MES(control != 0, false, "NULL async download handle"); - boost::lock_guard lock(control->mutex); - return control->stopped; - } - - bool download_error(const download_async_handle &control) - { - CHECK_AND_ASSERT_MES(control != 0, false, "NULL async download handle"); - boost::lock_guard lock(control->mutex); - return !control->success; - } - bool download_wait(const download_async_handle &control) { CHECK_AND_ASSERT_MES(control != 0, false, "NULL async download handle"); diff --git a/src/common/download.h b/src/common/download.h index 8efd29a33..97d0a3f56 100644 --- a/src/common/download.h +++ b/src/common/download.h @@ -46,8 +46,6 @@ namespace tools bool download(const std::string &path, const std::string &url, std::function progress = NULL); download_async_handle download_async(const std::string &path, const std::string &url, std::function result, std::function progress = NULL); - bool download_error(const download_async_handle &h); - bool download_finished(const download_async_handle &h); bool download_wait(const download_async_handle &h); bool download_cancel(const download_async_handle &h); } diff --git a/src/common/perf_timer.cpp b/src/common/perf_timer.cpp index fae0d7478..30d0b557d 100644 --- a/src/common/perf_timer.cpp +++ b/src/common/perf_timer.cpp @@ -97,17 +97,6 @@ el::Level performance_timer_log_level = el::Level::Info; static thread_local std::vector *performance_timers = NULL; #endif -void set_performance_timer_log_level(el::Level level) -{ - if (level != el::Level::Debug && level != el::Level::Trace && level != el::Level::Info - && level != el::Level::Warning && level != el::Level::Error && level != el::Level::Fatal) - { - MERROR("Wrong log level: " << el::LevelHelper::convertToString(level) << ", using Info"); - level = el::Level::Info; - } - performance_timer_log_level = level; -} - PerformanceTimer::PerformanceTimer(bool paused): started(true), paused(paused) { if (paused) diff --git a/src/common/perf_timer.h b/src/common/perf_timer.h index 3e53adcb8..8e9e10055 100644 --- a/src/common/perf_timer.h +++ b/src/common/perf_timer.h @@ -75,8 +75,6 @@ private: el::Level level; }; -void set_performance_timer_log_level(el::Level level); - #define PERF_TIMER_NAME(name) pt_##name #define PERF_TIMER_UNIT(name, unit) tools::LoggingPerformanceTimer PERF_TIMER_NAME(name)(#name, "perf." MONERO_DEFAULT_LOG_CATEGORY, unit, tools::performance_timer_log_level) #define PERF_TIMER_UNIT_L(name, unit, l) tools::LoggingPerformanceTimer PERF_TIMER_NAME(name)t_##name(#name, "perf." MONERO_DEFAULT_LOG_CATEGORY, unit, l)