refactor(writer_progress): remove unused code

This commit is contained in:
Marcus Holland-Moritz 2025-08-29 14:45:21 +02:00
parent cff0e2e60e
commit 9282abe2a2
2 changed files with 0 additions and 4 deletions

View File

@ -43,7 +43,6 @@ class writer_progress {
using update_function_type = std::function<void(writer_progress&, bool)>;
writer_progress();
explicit writer_progress(update_function_type func);
writer_progress(update_function_type func,
std::chrono::microseconds interval);

View File

@ -35,9 +35,6 @@ namespace dwarfs::writer {
writer_progress::writer_progress()
: prog_{std::make_unique<internal::progress>()} {}
writer_progress::writer_progress(update_function_type func)
: writer_progress(std::move(func), std::chrono::seconds(1)) {}
writer_progress::writer_progress(update_function_type func,
std::chrono::microseconds interval)
: prog_{std::make_unique<internal::progress>()}