mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Fix clang-tidy performance-move-const-argument warnings (not move assignable/copyable)
This commit is contained in:
parent
57c10a6ace
commit
909413838c
1 changed files with 1 additions and 1 deletions
|
@ -134,7 +134,7 @@ std::optional<zeek::logging::detail::LogWriteBatch> detail::BinarySerializationF
|
||||||
|
|
||||||
fmt.EndRead();
|
fmt.EndRead();
|
||||||
|
|
||||||
return logging::detail::LogWriteBatch{std::move(header), std::move(records)};
|
return logging::detail::LogWriteBatch{header, std::move(records)};
|
||||||
}
|
}
|
||||||
|
|
||||||
#include "zeek/ID.h"
|
#include "zeek/ID.h"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue