Skip to content

Commit a8eac79

Browse files
Make CI's clang-format happy
1 parent c496f7a commit a8eac79

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

sycl/include/sycl/ext/oneapi/properties/properties.hpp

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -318,14 +318,16 @@ class __SYCL_EBO properties<detail::properties_type_list<property_tys...>>
318318
template <typename... unsorted_property_tys,
319319
typename = std::enable_if_t<
320320
detail::properties_are_valid_for_ctad<unsorted_property_tys...>>>
321-
properties(unsorted_property_tys... props) -> properties<
322-
typename detail::properties_sorter<unsorted_property_tys...>::type>;
321+
properties(unsorted_property_tys... props)
322+
-> properties<
323+
typename detail::properties_sorter<unsorted_property_tys...>::type>;
323324

324325
template <typename... unsorted_property_tys,
325326
typename = std::enable_if_t<
326327
!detail::properties_are_valid_for_ctad<unsorted_property_tys...>>>
327-
properties(unsorted_property_tys... props) -> properties<
328-
detail::invalid_properties_type_list<unsorted_property_tys...>>;
328+
properties(unsorted_property_tys... props)
329+
-> properties<
330+
detail::invalid_properties_type_list<unsorted_property_tys...>>;
329331

330332
using empty_properties_t = decltype(properties{});
331333

0 commit comments

Comments
 (0)