diff --git a/sycl/include/sycl/properties/accessor_properties.hpp b/sycl/include/sycl/properties/accessor_properties.hpp index fafd6367f0cfd..dd09ce3b80247 100644 --- a/sycl/include/sycl/properties/accessor_properties.hpp +++ b/sycl/include/sycl/properties/accessor_properties.hpp @@ -188,8 +188,8 @@ struct is_property : std::true_type {}; template struct is_property_of - : std::bool_constant::value || - detail::acc_properties::is_host_accessor::value> {}; + : std::bool_constant || + detail::acc_properties::is_host_accessor_v> {}; template struct is_property_of @@ -201,15 +201,15 @@ struct is_property_of template struct is_property_of - : std::bool_constant::value> {}; + : std::bool_constant> {}; template struct is_property_of - : std::bool_constant::value> {}; + : std::bool_constant> {}; template struct is_property_of - : std::bool_constant::value> {}; + : std::bool_constant> {}; namespace detail { template