Skip to content

Commit c31f52b

Browse files
authored
Fixed HW accelerated SSSE3 shuffle capability detection for NET 6.0 and older. (#37)
1 parent 0632773 commit c31f52b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ByteAether.Ulid/Ulid.Guid.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ public Guid ToGuid()
144144
#if NET7_0_OR_GREATER
145145
Vector128.IsHardwareAccelerated;
146146
#else
147-
Sse3.IsSupported;
147+
Ssse3.IsSupported;
148148
#endif
149149

150150
private static readonly Vector128<byte> _shuffleMask

0 commit comments

Comments
 (0)