Skip to content

Commit

Permalink
Merge branch 'new_benchmarks_2024' of github.com:spcl/praas into new_…
Browse files Browse the repository at this point in the history
…benchmarks_2024
  • Loading branch information
mcopik committed Nov 10, 2024
2 parents 091237b + 92758d4 commit 138bf06
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 138bf06

Please sign in to comment.