Misc updates

This commit is contained in:
Aaron Po
2026-05-20 01:53:08 -04:00
parent 20742bb613
commit e251e7b2a3
5 changed files with 62 additions and 47 deletions

View File

@@ -16,4 +16,4 @@
LogProducer::LogProducer(BoundedChannel<LogEntry>& channel)
: channel_(channel) {}
void LogProducer::Log(const LogEntry& entry) { channel_.Send(entry); }
void LogProducer::Log(LogEntry entry) { channel_.Send(std::move(entry)); }