From 6486bc321040bcc9ee1bb4bf074915e43aa6517a Mon Sep 17 00:00:00 2001 From: gabime Date: Sat, 28 Dec 2024 15:05:25 +0200 Subject: [PATCH] Fix warning --- src/sinks/async_sink.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sinks/async_sink.cpp b/src/sinks/async_sink.cpp index 49b81b8c..4ae393c4 100644 --- a/src/sinks/async_sink.cpp +++ b/src/sinks/async_sink.cpp @@ -35,7 +35,7 @@ async_sink::~async_sink() { } catch (...) { printf("Exception in ~async_sink()\n"); } -}; +} void async_sink::log(const details::log_msg &msg) { send_message_(async_log_msg::type::log, msg); }