mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-06-01 01:54:00 +00:00
Misc updates
This commit is contained in:
@@ -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)); }
|
||||
|
||||
Reference in New Issue
Block a user