From 5dce6544731f6d22b46ad802473e72cfeac3fd22 Mon Sep 17 00:00:00 2001 From: gabime Date: Fri, 17 Jan 2025 16:48:28 +0200 Subject: [PATCH] Fixed warning --- src/details/err_helper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/details/err_helper.cpp b/src/details/err_helper.cpp index c2c799383..550d21c41 100644 --- a/src/details/err_helper.cpp +++ b/src/details/err_helper.cpp @@ -14,7 +14,7 @@ err_helper::err_helper(const err_helper &other) err_helper::err_helper(err_helper &&other) : custom_err_handler_(std::move(other.custom_err_handler_)), - last_report_time_(other.last_report_time_) {}; + last_report_time_(other.last_report_time_) {} // Prints error to stderr with source location (if available). A stderr sink is not used because reaching // this point might indicate a problem with the logging system itself so we use fputs() directly.