mirror of
https://github.com/zeek/zeek.git
synced 2025-10-03 15:18:20 +00:00
cluster/Backend: Do not use const std::string_view&
This commit is contained in:
parent
6d1259423e
commit
9b2fff9640
2 changed files with 4 additions and 5 deletions
|
@ -150,13 +150,12 @@ protected:
|
|||
/**
|
||||
* Process an incoming event message.
|
||||
*/
|
||||
bool ProcessEventMessage(const std::string_view& topic, const std::string_view& format,
|
||||
detail::byte_buffer_span payload);
|
||||
bool ProcessEventMessage(std::string_view topic, std::string_view format, detail::byte_buffer_span payload);
|
||||
|
||||
/**
|
||||
* Process an incoming log message.
|
||||
*/
|
||||
bool ProcessLogMessage(const std::string_view& format, detail::byte_buffer_span payload);
|
||||
bool ProcessLogMessage(std::string_view format, detail::byte_buffer_span payload);
|
||||
|
||||
private:
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue