Clean some tidy warnings

This commit is contained in:
gabime 2024-12-14 19:14:24 +02:00
parent a57169f4f0
commit e0ec53ed21

View File

@ -48,7 +48,7 @@ public:
protected:
void sink_it_(const details::log_msg &msg) override {
for (auto &sub_sink : sinks_) {
for (const auto &sub_sink : sinks_) {
if (sub_sink->should_log(msg.log_level)) {
sub_sink->log(msg);
}