We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb081da commit 77f207cCopy full SHA for 77f207c
sycl/include/sycl/detail/vector_arith.hpp
@@ -35,8 +35,9 @@ struct ShiftLeft {
35
};
36
struct ShiftRight {
37
template <class T, class U>
38
- constexpr auto operator()(T &&lhs, U &&rhs) const
39
- -> decltype(std::forward<T>(lhs) >> std::forward<U>(rhs)) {
+ constexpr auto operator()(T &&lhs,
+ U &&rhs) const -> decltype(std::forward<T>(lhs) >>
40
+ std::forward<U>(rhs)) {
41
return std::forward<T>(lhs) >> std::forward<U>(rhs);
42
}
43
0 commit comments