Skip to content

Commit

Permalink
nits
Browse files Browse the repository at this point in the history
  • Loading branch information
haiqi96 committed Jun 12, 2024
1 parent d69ed17 commit 8d9d149
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions components/core/src/clp_s/search/OutputHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@ void NetworkOutputHandler::write(
epochtime_t timestamp,
string_view archive_id
) {
msgpack::type::tuple<epochtime_t, string, string, string>
src(timestamp, message, "", archive_id);
static constexpr string_view cOrigFilePath{""};
msgpack::type::tuple<epochtime_t, string, string, string> const
src(timestamp, message, cOrigFilePath, archive_id);
msgpack::sbuffer m;
msgpack::pack(m, src);

Expand Down

0 comments on commit 8d9d149

Please sign in to comment.