Skip to content

Commit

Permalink
SerialIOTest: Clang-Tidy Fixes (#1599)
Browse files Browse the repository at this point in the history
Small updates seen by Clang-Tidy.
  • Loading branch information
ax3l authored Feb 27, 2024
1 parent 30e5bde commit 045e416
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/SerialIOTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5469,6 +5469,7 @@ void adios2_group_table(
write.close();

Series read("../samples/group_table.bp", Access::READ_LINEAR, jsonRead);
// NOLINTNEXTLINE(performance-for-range-copy)
for (auto iteration : read.readIterations())
{
switch (iteration.iterationIndex)
Expand Down Expand Up @@ -6515,7 +6516,7 @@ TEST_CASE("deferred_parsing", "[serial]")
}

#if openPMD_HAS_ADIOS_2_9
void chaotic_stream(std::string filename, bool variableBased)
void chaotic_stream(std::string const &filename, bool variableBased)
{
/*
* We will write iterations in the following order.
Expand Down

0 comments on commit 045e416

Please sign in to comment.