File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
sycl/include/sycl/ext/oneapi/properties Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -318,14 +318,16 @@ class __SYCL_EBO properties<detail::properties_type_list<property_tys...>>
318318template <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
324325template <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
330332using empty_properties_t = decltype (properties{});
331333
You can’t perform that action at this time.
0 commit comments