From bf48827883ad70a53e413e91629813006dc8e787 Mon Sep 17 00:00:00 2001 From: isidorostsa Date: Tue, 1 Aug 2023 15:12:02 +0300 Subject: [PATCH] too long line --- .../include/hpx/type_support/uninitialized_relocate.hpp | 1 - libs/core/type_support/tests/unit/relocate_at.cpp | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/core/type_support/include/hpx/type_support/uninitialized_relocate.hpp b/libs/core/type_support/include/hpx/type_support/uninitialized_relocate.hpp index b7cfd67e160f..38242c3efead 100644 --- a/libs/core/type_support/include/hpx/type_support/uninitialized_relocate.hpp +++ b/libs/core/type_support/include/hpx/type_support/uninitialized_relocate.hpp @@ -167,7 +167,6 @@ namespace hpx { uninitialized_relocate(InIter first, InIter last, FwdIter dst) noexcept( detail::choose_uninitialized_relocate_helper::value != detail::relocate_strategy::for_loop_try_catch) - // maybe noexcept(auto)? { static_assert(detail::choose_uninitialized_relocate_helper::valid_relocation, diff --git a/libs/core/type_support/tests/unit/relocate_at.cpp b/libs/core/type_support/tests/unit/relocate_at.cpp index 538ae524d949..bc87231dbae7 100644 --- a/libs/core/type_support/tests/unit/relocate_at.cpp +++ b/libs/core/type_support/tests/unit/relocate_at.cpp @@ -113,7 +113,8 @@ int hpx_main() hpx::relocate_at(ptr1, ptr2); - // count = 1 + 0 (relocation on trivially relocatable objects does not trigger move constructors + // count = 1 + 0 (relocation on trivially relocatable + // objects does not trigger move constructors // or destructors); no object is destroyed or created HPX_TEST(trivially_relocatable_struct::count == 1); HPX_TEST(ptr2->data == 1234);