Skip to content

Commit 5dce654

Browse files
committed
Fixed warning
1 parent be942e0 commit 5dce654

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/details/err_helper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ err_helper::err_helper(const err_helper &other)
1414

1515
err_helper::err_helper(err_helper &&other)
1616
: custom_err_handler_(std::move(other.custom_err_handler_)),
17-
last_report_time_(other.last_report_time_) {};
17+
last_report_time_(other.last_report_time_) {}
1818

1919
// Prints error to stderr with source location (if available). A stderr sink is not used because reaching
2020
// this point might indicate a problem with the logging system itself so we use fputs() directly.

0 commit comments

Comments
 (0)