Skip to content

Commit 31d391e

Browse files
committed
Fix formatting
Signed-off-by: Steffen Larsen <[email protected]>
1 parent 17fe53c commit 31d391e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sycl/include/sycl/ext/oneapi/property_list/properties.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ struct foo {
100100
foo(int v) : value(v) {}
101101
int value;
102102
};
103-
103+
104104
// (3.)
105105
inline bool operator==(const foo &lhs, const foo &rhs) {
106106
return lhs.value == rhs.value;
@@ -110,12 +110,12 @@ inline bool operator!=(const foo &lhs, const foo &rhs) {
110110
}
111111
112112
namespace detail {
113-
113+
114114
// (4.)
115115
template <> struct PropertyToKind<foo> {
116116
static constexpr PropKind Kind = PropKind::Foo;
117117
};
118-
118+
119119
// (5.)
120120
template <> struct IsRuntimeProperty<foo> : std::true_type {};
121121
} // namespace detail
@@ -127,7 +127,7 @@ template <> struct is_property<ext::oneapi::foo> : std::true_type {};
127127
// Replace SYCL_OBJ with the SYCL object to support the property.
128128
template <> struct is_property_of<ext::oneapi::foo, SYCL_OBJ>
129129
: std::true_type {};
130-
130+
131131
} // namespace sycl
132132
*******************************************************************************/
133133

0 commit comments

Comments
 (0)