File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
sycl/include/CL/sycl/detail Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ template <int Num> struct Assigner {
28
28
static void init (R &r, const T x) {
29
29
Assigner<Num - 1 >::template init<R, T, ET>(r, x);
30
30
ET v = x.template swizzle <Num>();
31
- r.value [Num] = msbIsSet (v)* (-1 );
31
+ r.value [Num] = msbIsSet (v) * (-1 );
32
32
}
33
33
};
34
34
@@ -39,7 +39,7 @@ template <> struct Assigner<0> {
39
39
template <typename R, typename T, typename ET>
40
40
static void init (R &r, const T x) {
41
41
ET v = x.template swizzle <0 >();
42
- r.value [0 ] = msbIsSet (v)* (-1 );
42
+ r.value [0 ] = msbIsSet (v) * (-1 );
43
43
}
44
44
};
45
45
@@ -60,7 +60,7 @@ template <int N> struct Boolean {
60
60
61
61
Boolean (std::initializer_list<element_type> l) {
62
62
for (size_t I = 0 ; I < N; ++I) {
63
- value[I] = (!!*(l.begin () + I))* (-1 );
63
+ value[I] = (!!*(l.begin () + I)) * (-1 );
64
64
}
65
65
}
66
66
You can’t perform that action at this time.
0 commit comments