Skip to content

Commit

Permalink
[benchmarks] Fix output of benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
mcopik committed Oct 20, 2024
1 parent fe55c31 commit 92758d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions benchmarks/latex-service/benchmarker_editing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ int main(int argc, char** argv)
}
{
std::ofstream output{fmt::format("output_update_file_{}_praas_{}", j, i)};
output << invoc.payload;
output << std::string_view{invoc.payload.get(), invoc.payload_len};
}
}

Expand Down Expand Up @@ -202,7 +202,7 @@ int main(int argc, char** argv)
}
{
std::ofstream output{fmt::format("output_get_file_{}_praas_{}", j, i)};
output << invoc.payload;
output << std::string_view{invoc.payload.get(), invoc.payload_len};
}
}

Expand Down

0 comments on commit 92758d4

Please sign in to comment.