File tree 2 files changed +5
-5
lines changed
sycl/include/sycl/ext/oneapi/properties
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ struct ExtractProperties<std::tuple<PropertiesTs...>> {
96
96
97
97
template <typename ... PropertyValueTs>
98
98
static ExtractedPropertiesT<PropertyValueTs...>
99
- Extract (std::tuple<PropertyValueTs...> PropertyValues ) {
99
+ Extract (std::tuple<PropertyValueTs...>) {
100
100
return {};
101
101
}
102
102
};
Original file line number Diff line number Diff line change @@ -51,16 +51,16 @@ struct property_value
51
51
template <typename PropertyT, typename ... A, typename ... B>
52
52
constexpr std::enable_if_t <detail::IsCompileTimeProperty<PropertyT>::value,
53
53
bool >
54
- operator ==(const property_value<PropertyT, A...> &LHS ,
55
- const property_value<PropertyT, B...> &RHS ) {
54
+ operator ==(const property_value<PropertyT, A...> &,
55
+ const property_value<PropertyT, B...> &) {
56
56
return (std::is_same<A, B>::value && ...);
57
57
}
58
58
59
59
template <typename PropertyT, typename ... A, typename ... B>
60
60
constexpr std::enable_if_t <detail::IsCompileTimeProperty<PropertyT>::value,
61
61
bool >
62
- operator !=(const property_value<PropertyT, A...> &LHS ,
63
- const property_value<PropertyT, B...> &RHS ) {
62
+ operator !=(const property_value<PropertyT, A...> &,
63
+ const property_value<PropertyT, B...> &) {
64
64
return (!std::is_same<A, B>::value || ...);
65
65
}
66
66
You can’t perform that action at this time.
0 commit comments