Skip to content

Commit ff1f4e3

Browse files
committed
Apply clang-format on inline code
1 parent 04a222f commit ff1f4e3

File tree

1 file changed

+35
-35
lines changed

1 file changed

+35
-35
lines changed

sycl/doc/extensions/experimental/sycl_ext_oneapi_complex.asciidoc

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -257,10 +257,10 @@ public:
257257
friend marray &operator %=(value_type &lhs, const marray &rhs) = delete;
258258

259259
friend marray operator ++(marray &lhs, int) = delete;
260-
friend marray &operator ++(marray & rhs) = delete;
260+
friend marray &operator ++(marray &lhs) = delete;
261261

262262
friend marray operator --(marray &lhs, int) = delete;
263-
friend marray &operator --(marray & rhs) = delete;
263+
friend marray &operator --(marray &lhs) = delete;
264264

265265
friend marray operator &(const marray &lhs, const marray &rhs) = delete;
266266
friend marray operator &(const marray &lhs, const value_type &rhs) = delete;
@@ -271,51 +271,51 @@ public:
271271
friend marray operator ^(const marray &lhs, const marray &rhs) = delete;
272272
friend marray operator ^(const marray &lhs, const value_type &rhs) = delete;
273273

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;
277277

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;
281281

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;
285285

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;
289289

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;
293293

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;
296296

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;
299299

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;
303303

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;
307307

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;
311311

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;
315315

316-
friend marray operator ~(const marray &v) = delete;
316+
friend marray operator ~(const marray &lhs) = delete;
317317

318-
friend marray<bool, NumElements> operator !(const marray &v) = delete;
318+
friend marray<bool, NumElements> operator !(const marray &lhs) = delete;
319319
};
320320

321321
} // namespace sycl

0 commit comments

Comments
 (0)