Fixed warning about move

This commit is contained in:
gabime
2025-01-17 17:01:57 +02:00
parent 5dce654473
commit 9673c1ba09
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ err_helper::err_helper(const err_helper &other)
: custom_err_handler_(other.custom_err_handler_),
last_report_time_(other.last_report_time_) {}
err_helper::err_helper(err_helper &&other)
err_helper::err_helper(err_helper &&other) noexcept
: custom_err_handler_(std::move(other.custom_err_handler_)),
last_report_time_(other.last_report_time_) {}