From b7c85c8c68b4d84f02e6c42388de7c0429afe134 Mon Sep 17 00:00:00 2001 From: isidorostsa Date: Thu, 28 Nov 2024 14:38:36 +0200 Subject: [PATCH] clang-format conflicts --- libs/core/datastructures/tests/unit/inplace_vector.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/libs/core/datastructures/tests/unit/inplace_vector.cpp b/libs/core/datastructures/tests/unit/inplace_vector.cpp index d03e568935b..579d725af07 100644 --- a/libs/core/datastructures/tests/unit/inplace_vector.cpp +++ b/libs/core/datastructures/tests/unit/inplace_vector.cpp @@ -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); } @@ -728,11 +728,11 @@ namespace test { HPX_ASSERT(false); } } - { + { inplace_vector v = {1, 2, 3, 4, 5}; try { - (void)v.at(6); + (void) v.at(6); } catch (std::out_of_range&) { @@ -742,8 +742,6 @@ namespace test { HPX_ASSERT(false); } } - - } } // namespace test