Skip to content

Commit

Permalink
Removed invalid assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
sakno committed Jan 12, 2024
1 parent 5ad7693 commit e1a5b44
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/DotNext/Numerics/BitVector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ public static unsafe void GetBits<T>(this T value, Span<bool> bits)
private static void Get8Bits(ref byte input, nint length, ref bool output)
{
Debug.Assert(Vector128.IsHardwareAccelerated);
Debug.Assert(Vector64.IsHardwareAccelerated);

for (nint i = 0; i < length; i += sizeof(byte))
{
Expand Down

0 comments on commit e1a5b44

Please sign in to comment.