Skip to content

Commit aa62583

Browse files
committed
formatting
Signed-off-by: Dan Hoeflinger <[email protected]>
1 parent 0661d31 commit aa62583

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

include/oneapi/dpl/iterator

-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ using ::std::rbegin;
5656
using ::std::rend;
5757
using ::std::reverse_iterator;
5858
using ::std::size;
59-
6059
} // namespace dpl
6160
} // namespace oneapi
6261
namespace dpl = oneapi::dpl;

include/oneapi/dpl/pstl/iterator_impl.h

+7-5
Original file line numberDiff line numberDiff line change
@@ -193,12 +193,14 @@ namespace dpl
193193

194194
template <typename T>
195195
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>()))
198197
{
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");
202204
};
203205

204206
template <typename T>

0 commit comments

Comments
 (0)