Skip to content

Commit

Permalink
Remove __ from layout_padded
Browse files Browse the repository at this point in the history
  • Loading branch information
crtrott committed Oct 20, 2023
1 parent 63965b5 commit 91633d1
Show file tree
Hide file tree
Showing 6 changed files with 276 additions and 276 deletions.
6 changes: 3 additions & 3 deletions include/experimental/__p0009_bits/layout_left.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ class layout_left::mapping {
MDSPAN_TEMPLATE_REQUIRES(
class _Mapping,
/* requires */ (
MDSPAN_IMPL_PROPOSED_NAMESPACE::detail::__is_layout_left_padded_mapping<_Mapping>::value
MDSPAN_IMPL_PROPOSED_NAMESPACE::detail::is_layout_left_padded_mapping<_Mapping>::value
&& std::is_constructible_v<extents_type, typename _Mapping::extents_type>
)
)
Expand All @@ -131,10 +131,10 @@ class layout_left::mapping {
: __extents(__other.extents())
{
MDSPAN_IMPL_PROPOSED_NAMESPACE::detail::
__check_padded_layout_converting_constructor_mandates<extents_type,
check_padded_layout_converting_constructor_mandates<extents_type,
_Mapping>();
MDSPAN_IMPL_PROPOSED_NAMESPACE::detail::
__check_padded_layout_converting_constructor_preconditions<
check_padded_layout_converting_constructor_preconditions<
extents_type>(__other);
}
#endif
Expand Down
6 changes: 3 additions & 3 deletions include/experimental/__p0009_bits/layout_right.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,17 +127,17 @@ class layout_right::mapping {
MDSPAN_TEMPLATE_REQUIRES(
class _Mapping,
/* requires */ (
MDSPAN_IMPL_PROPOSED_NAMESPACE::detail::__is_layout_right_padded_mapping<_Mapping>::value
MDSPAN_IMPL_PROPOSED_NAMESPACE::detail::is_layout_right_padded_mapping<_Mapping>::value
&& std::is_constructible_v<extents_type, typename _Mapping::extents_type>))
MDSPAN_CONDITIONAL_EXPLICIT((!std::is_convertible_v<typename _Mapping::extents_type, extents_type>))
mapping(const _Mapping &__other) noexcept
: __extents(__other.extents())
{
MDSPAN_IMPL_PROPOSED_NAMESPACE::detail::
__check_padded_layout_converting_constructor_mandates<extents_type,
check_padded_layout_converting_constructor_mandates<extents_type,
_Mapping>();
MDSPAN_IMPL_PROPOSED_NAMESPACE::detail::
__check_padded_layout_converting_constructor_preconditions<
check_padded_layout_converting_constructor_preconditions<
extents_type>(__other);
}
#endif
Expand Down
Loading

0 comments on commit 91633d1

Please sign in to comment.