Skip to content

Commit 77f207c

Browse files
clang-format
1 parent bb081da commit 77f207c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

sycl/include/sycl/detail/vector_arith.hpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,9 @@ struct ShiftLeft {
3535
};
3636
struct ShiftRight {
3737
template <class T, class U>
38-
constexpr auto operator()(T &&lhs, U &&rhs) const
39-
-> decltype(std::forward<T>(lhs) >> std::forward<U>(rhs)) {
38+
constexpr auto operator()(T &&lhs,
39+
U &&rhs) const -> decltype(std::forward<T>(lhs) >>
40+
std::forward<U>(rhs)) {
4041
return std::forward<T>(lhs) >> std::forward<U>(rhs);
4142
}
4243
};

0 commit comments

Comments
 (0)