Skip to content

Commit

Permalink
Reintegrate latest changes from gentryx/master
Browse files Browse the repository at this point in the history
  • Loading branch information
hkaiser committed Aug 10, 2017
1 parent d9e764d commit 942cbe9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions hpx/components/containers/coarray/coarray.hpp
Expand Up @@ -218,11 +218,11 @@ namespace hpx
}

template<typename... I,
typename = std::enable_if_t<
typename = typename std::enable_if<
! std::is_same<
typename util::detail::at_index<sizeof...(I)-1,I...>::type,
detail::auto_subscript>::value
>
>::type
>
hpx::detail::view_element<T,Data>
operator()(I... index) const
Expand All @@ -234,11 +234,11 @@ namespace hpx
}

template<typename... I,
typename = std::enable_if_t<
typename = typename std::enable_if<
std::is_same<
typename util::detail::at_index<sizeof...(I)-1,I...>::type,
detail::auto_subscript>::value
>
>::type
>
Data &
operator()(I... index)
Expand Down

0 comments on commit 942cbe9

Please sign in to comment.