File tree 2 files changed +7
-6
lines changed
2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,6 @@ using ::std::rbegin;
56
56
using ::std::rend;
57
57
using ::std::reverse_iterator;
58
58
using ::std::size;
59
-
60
59
} // namespace dpl
61
60
} // namespace oneapi
62
61
namespace dpl = oneapi::dpl;
Original file line number Diff line number Diff line change @@ -193,12 +193,14 @@ namespace dpl
193
193
194
194
template <typename T>
195
195
struct is_indirectly_device_accessible_iterator
196
- : decltype(oneapi::dpl::__internal::__is_onedpl_indirectly_device_accessible_iterator(
197
- std::declval<T>()))
196
+ : decltype(oneapi::dpl::__internal::__is_onedpl_indirectly_device_accessible_iterator(std::declval<T>()))
198
197
{
199
- static_assert (std::is_same_v<decltype (decltype (oneapi::dpl::__internal::__is_onedpl_indirectly_device_accessible_iterator (
200
- std::declval<T>()))::value), const bool >,
201
- " Return type of is_onedpl_indirectly_device_accessible_iterator does not have the characteristics of a bool_constant" );
198
+ static_assert (
199
+ std::is_same_v<decltype (decltype (oneapi::dpl::__internal::__is_onedpl_indirectly_device_accessible_iterator (
200
+ std::declval<T>()))::value),
201
+ const bool >,
202
+ " Return type of is_onedpl_indirectly_device_accessible_iterator does not have the characteristics of a "
203
+ " bool_constant" );
202
204
};
203
205
204
206
template <typename T>
You can’t perform that action at this time.
0 commit comments