We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edc8bd6 commit c230218Copy full SHA for c230218
src/ICSharpCode.SharpZipLib/BZip2/BZip2InputStream.cs
@@ -1,6 +1,6 @@
1
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
2
#define VECTORIZE_MEMORY_MOVE
3
-#endif // !NETSTANDARD2_0 && !NETFRAMEWORK
+#endif
4
5
using ICSharpCode.SharpZipLib.Checksum;
6
using System;
@@ -25,7 +25,7 @@ public class BZip2InputStream : Stream
25
26
#if VECTORIZE_MEMORY_MOVE
27
private static readonly int VectorSize = System.Numerics.Vector<byte>.Count;
28
-#endif
+#endif // VECTORIZE_MEMORY_MOVE
29
30
#endregion Constants
31
@@ -733,7 +733,7 @@ cache misses.
733
arrayPart.CopyTo(yy, j - VectorSize + 1);
734
j -= VectorSize;
735
}
736
737
738
while(j > 0)
739
{
0 commit comments