Skip to content

Commit 4c5d100

Browse files
committed
[stdlib] SIMD extends BitwiseCopyable.
1 parent 4dc9713 commit 4c5d100

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

stdlib/public/core/SIMDVector.swift

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ public protocol SIMDScalar : _BitwiseCopyable {
8080
public protocol SIMD<Scalar>:
8181
SIMDStorage,
8282
Hashable,
83-
ExpressibleByArrayLiteral
83+
ExpressibleByArrayLiteral,
84+
_BitwiseCopyable
8485
{
8586
/// The mask type resulting from pointwise comparisons of this vector type.
8687
associatedtype MaskStorage: SIMD
@@ -95,7 +96,8 @@ public protocol SIMD<Scalar>:
9596
Codable,
9697
Hashable,
9798
CustomStringConvertible,
98-
ExpressibleByArrayLiteral
99+
ExpressibleByArrayLiteral,
100+
_BitwiseCopyable
99101
{
100102
/// The mask type resulting from pointwise comparisons of this vector type.
101103
associatedtype MaskStorage: SIMD

0 commit comments

Comments
 (0)