Skip to content

Commit

Permalink
fixed ringbuffer_sink.h
Browse files Browse the repository at this point in the history
  • Loading branch information
gabime committed Dec 7, 2024
1 parent 6cc6a7b commit 16eef3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/spdlog/sinks/ringbuffer_sink.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class ringbuffer_sink final : public base_sink<Mutex> {
}

protected:
void sink_it_(const details::log_msg &msg) override { q_.push_back(details::async_log_msg{details::async_log_msg::msg_type::log, msg}); }
void sink_it_(const details::log_msg &msg) override { q_.push_back(details::async_log_msg{details::async_log_msg::type::log, msg}); }
void flush_() override {}

private:
Expand Down

0 comments on commit 16eef3e

Please sign in to comment.