File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
sycl/include/sycl/properties Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -188,8 +188,8 @@ struct is_property<ext::intel::property::buffer_location> : std::true_type {};
188
188
189
189
template <typename T>
190
190
struct is_property_of <property::noinit, T>
191
- : std::bool_constant<detail::acc_properties::is_accessor <T>::value ||
192
- detail::acc_properties::is_host_accessor <T>::value > {};
191
+ : std::bool_constant<detail::acc_properties::is_accessor_v <T> ||
192
+ detail::acc_properties::is_host_accessor_v <T>> {};
193
193
194
194
template <typename T>
195
195
struct is_property_of <property::no_init, T>
@@ -201,15 +201,15 @@ struct is_property_of<property::no_init, T>
201
201
202
202
template <typename T>
203
203
struct is_property_of <ext::oneapi::property::no_offset, T>
204
- : std::bool_constant<detail::acc_properties::is_accessor <T>::value > {};
204
+ : std::bool_constant<detail::acc_properties::is_accessor_v <T>> {};
205
205
206
206
template <typename T>
207
207
struct is_property_of <ext::oneapi::property::no_alias, T>
208
- : std::bool_constant<detail::acc_properties::is_accessor <T>::value > {};
208
+ : std::bool_constant<detail::acc_properties::is_accessor_v <T>> {};
209
209
210
210
template <typename T>
211
211
struct is_property_of <ext::intel::property::buffer_location, T>
212
- : std::bool_constant<detail::acc_properties::is_accessor <T>::value > {};
212
+ : std::bool_constant<detail::acc_properties::is_accessor_v <T>> {};
213
213
214
214
namespace detail {
215
215
template <int I>
You can’t perform that action at this time.
0 commit comments