Skip to content

Commit

Permalink
clang-format conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
isidorostsa committed Nov 28, 2024
1 parent 2f85fe0 commit b7c85c8
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions libs/core/datastructures/tests/unit/inplace_vector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ namespace test {
HPX_TEST_EQ(dist2, cont_b.size());

for (std::size_t i = 0; itcont_a != itcont_a_end;
++itcont_a, ++itcont_b, ++i)
++itcont_a, ++itcont_b, ++i)
{
HPX_TEST_EQ(*itcont_a, *itcont_b);
}
Expand Down Expand Up @@ -728,11 +728,11 @@ namespace test {
HPX_ASSERT(false);
}
}
{
{
inplace_vector<int, 5> v = {1, 2, 3, 4, 5};
try
{
(void)v.at(6);
(void) v.at(6);
}
catch (std::out_of_range&)
{
Expand All @@ -742,8 +742,6 @@ namespace test {
HPX_ASSERT(false);
}
}


}
} // namespace test

Expand Down

0 comments on commit b7c85c8

Please sign in to comment.