@@ -257,10 +257,10 @@ public:
257
257
friend marray &operator %=(value_type &lhs, const marray &rhs) = delete;
258
258
259
259
friend marray operator ++(marray &lhs, int) = delete;
260
- friend marray &operator ++(marray & rhs ) = delete;
260
+ friend marray &operator ++(marray &lhs ) = delete;
261
261
262
262
friend marray operator --(marray &lhs, int) = delete;
263
- friend marray &operator --(marray & rhs ) = delete;
263
+ friend marray &operator --(marray &lhs ) = delete;
264
264
265
265
friend marray operator &(const marray &lhs, const marray &rhs) = delete;
266
266
friend marray operator &(const marray &lhs, const value_type &rhs) = delete;
@@ -271,51 +271,51 @@ public:
271
271
friend marray operator ^(const marray &lhs, const marray &rhs) = delete;
272
272
friend marray operator ^(const marray &lhs, const value_type &rhs) = delete;
273
273
274
- friend marray &operator &=(marray & lhs, const marray & rhs) = delete;
275
- friend marray &operator &=(marray & lhs, const value_type & rhs) = delete;
276
- friend marray &operator &=(value_type & lhs, const marray & rhs) = delete;
274
+ friend marray &operator &=(marray &lhs, const marray &rhs) = delete;
275
+ friend marray &operator &=(marray &lhs, const value_type &rhs) = delete;
276
+ friend marray &operator &=(value_type &lhs, const marray &rhs) = delete;
277
277
278
- friend marray &operator |=(marray & lhs, const marray & rhs) = delete;
279
- friend marray &operator |=(marray & lhs, const value_type & rhs) = delete;
280
- friend marray &operator |=(value_type & lhs, const marray & rhs) = delete;
278
+ friend marray &operator |=(marray &lhs, const marray &rhs) = delete;
279
+ friend marray &operator |=(marray &lhs, const value_type &rhs) = delete;
280
+ friend marray &operator |=(value_type &lhs, const marray &rhs) = delete;
281
281
282
- friend marray &operator ^=(marray & lhs, const marray & rhs) = delete;
283
- friend marray &operator ^=(marray & lhs, const value_type & rhs) = delete;
284
- friend marray &operator ^=(value_type & lhs, const marray & rhs) = delete;
282
+ friend marray &operator ^=(marray &lhs, const marray &rhs) = delete;
283
+ friend marray &operator ^=(marray &lhs, const value_type &rhs) = delete;
284
+ friend marray &operator ^=(value_type &lhs, const marray &rhs) = delete;
285
285
286
- friend marray<bool, NumElements> operator <<(const marray & lhs, const marray & rhs) = delete;
287
- friend marray<bool, NumElements> operator <<(const marray & lhs, const value_type & rhs) = delete;
288
- friend marray<bool, NumElements> operator <<(const value_type & lhs, const marray & rhs) = delete;
286
+ friend marray<bool, NumElements> operator <<(const marray &lhs, const marray &rhs) = delete;
287
+ friend marray<bool, NumElements> operator <<(const marray &lhs, const value_type &rhs) = delete;
288
+ friend marray<bool, NumElements> operator <<(const value_type &lhs, const marray &rhs) = delete;
289
289
290
- friend marray<bool, NumElements> operator >>(const marray & lhs, const marray & rhs) = delete;
291
- friend marray<bool, NumElements> operator >>(const marray & lhs, const value_type & rhs) = delete;
292
- friend marray<bool, NumElements> operator >>(const value_type & lhs, const marray & rhs) = delete;
290
+ friend marray<bool, NumElements> operator >>(const marray &lhs, const marray &rhs) = delete;
291
+ friend marray<bool, NumElements> operator >>(const marray &lhs, const value_type &rhs) = delete;
292
+ friend marray<bool, NumElements> operator >>(const value_type &lhs, const marray &rhs) = delete;
293
293
294
- friend marray &operator <<=(marray & lhs, const marray & rhs) = delete;
295
- friend marray &operator <<=(marray & lhs, const value_type & rhs) = delete;
294
+ friend marray &operator <<=(marray &lhs, const marray &rhs) = delete;
295
+ friend marray &operator <<=(marray &lhs, const value_type &rhs) = delete;
296
296
297
- friend marray &operator >>=(marray & lhs, const marray & rhs) = delete;
298
- friend marray &operator >>=(marray & lhs, const value_type & rhs) = delete;
297
+ friend marray &operator >>=(marray &lhs, const marray &rhs) = delete;
298
+ friend marray &operator >>=(marray &lhs, const value_type &rhs) = delete;
299
299
300
- friend marray<bool, NumElements> operator <(const marray & lhs, const marray & rhs) = delete;
301
- friend marray<bool, NumElements> operator <(const marray & lhs, const value_type & rhs) = delete;
302
- friend marray<bool, NumElements> operator <(const value_type & lhs, const marray & rhs) = delete;
300
+ friend marray<bool, NumElements> operator <(const marray &lhs, const marray &rhs) = delete;
301
+ friend marray<bool, NumElements> operator <(const marray &lhs, const value_type &rhs) = delete;
302
+ friend marray<bool, NumElements> operator <(const value_type &lhs, const marray &rhs) = delete;
303
303
304
- friend marray<bool, NumElements> operator >(const marray & lhs, const marray & rhs) = delete;
305
- friend marray<bool, NumElements> operator >(const marray & lhs, const value_type & rhs) = delete;
306
- friend marray<bool, NumElements> operator >(const value_type & lhs, const marray & rhs) = delete;
304
+ friend marray<bool, NumElements> operator >(const marray &lhs, const marray &rhs) = delete;
305
+ friend marray<bool, NumElements> operator >(const marray &lhs, const value_type &rhs) = delete;
306
+ friend marray<bool, NumElements> operator >(const value_type &lhs, const marray &rhs) = delete;
307
307
308
- friend marray<bool, NumElements> operator <=(const marray & lhs, const marray & rhs) = delete;
309
- friend marray<bool, NumElements> operator <=(const marray & lhs, const value_type & rhs) = delete;
310
- friend marray<bool, NumElements> operator <=(const value_type & lhs, const marray & rhs) = delete;
308
+ friend marray<bool, NumElements> operator <=(const marray &lhs, const marray &rhs) = delete;
309
+ friend marray<bool, NumElements> operator <=(const marray &lhs, const value_type &rhs) = delete;
310
+ friend marray<bool, NumElements> operator <=(const value_type &lhs, const marray &rhs) = delete;
311
311
312
- friend marray<bool, NumElements> operator >=(const marray & lhs, const marray & rhs) = delete;
313
- friend marray<bool, NumElements> operator >=(const marray & lhs, const value_type & rhs) = delete;
314
- friend marray<bool, NumElements> operator >=(const value_type & lhs, const marray & rhs) = delete;
312
+ friend marray<bool, NumElements> operator >=(const marray &lhs, const marray &rhs) = delete;
313
+ friend marray<bool, NumElements> operator >=(const marray &lhs, const value_type &rhs) = delete;
314
+ friend marray<bool, NumElements> operator >=(const value_type &lhs, const marray &rhs) = delete;
315
315
316
- friend marray operator ~(const marray &v ) = delete;
316
+ friend marray operator ~(const marray &lhs ) = delete;
317
317
318
- friend marray<bool, NumElements> operator !(const marray &v ) = delete;
318
+ friend marray<bool, NumElements> operator !(const marray &lhs ) = delete;
319
319
};
320
320
321
321
} // namespace sycl
0 commit comments