From 08ed7f27378749f933485e2dd1055835bbf6678d Mon Sep 17 00:00:00 2001 From: gabime Date: Sat, 7 Dec 2024 17:40:43 +0200 Subject: [PATCH] Code formatting --- include/spdlog/sinks/async_sink.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/sinks/async_sink.h b/include/spdlog/sinks/async_sink.h index 74055103..343fb140 100644 --- a/include/spdlog/sinks/async_sink.h +++ b/include/spdlog/sinks/async_sink.h @@ -32,7 +32,7 @@ public: discard_new // Discard the log message if the queue is full }; - async_sink(size_t queue_size, std::function on_thread_start, std::function on_thread_stop) { + async_sink(size_t queue_size, std::function on_thread_start, std::function on_thread_stop) { if (queue_size == 0 || queue_size > max_queue_size) { throw spdlog_ex("async_sink: invalid queue size"); }