Skip to content

Commit

Permalink
too long line
Browse files Browse the repository at this point in the history
  • Loading branch information
isidorostsa committed Aug 1, 2023
1 parent cafae0c commit bf48827
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,6 @@ namespace hpx {
uninitialized_relocate(InIter first, InIter last, FwdIter dst) noexcept(
detail::choose_uninitialized_relocate_helper<InIter, FwdIter>::value !=
detail::relocate_strategy::for_loop_try_catch)
// maybe noexcept(auto)?
{
static_assert(detail::choose_uninitialized_relocate_helper<InIter,
FwdIter>::valid_relocation,
Expand Down
3 changes: 2 additions & 1 deletion libs/core/type_support/tests/unit/relocate_at.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit bf48827

Please sign in to comment.