From 142e7afe727d11cefab0caeaf0e722257b2de07e Mon Sep 17 00:00:00 2001 From: Anton Firszov Date: Sat, 6 May 2017 04:14:54 +0200 Subject: [PATCH] removed unnecessary unsafe modifier [skip ci] --- src/ImageSharp/PixelFormats/Rgba32.PixelOperations.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ImageSharp/PixelFormats/Rgba32.PixelOperations.cs b/src/ImageSharp/PixelFormats/Rgba32.PixelOperations.cs index 372ac23922..63fbdcae55 100644 --- a/src/ImageSharp/PixelFormats/Rgba32.PixelOperations.cs +++ b/src/ImageSharp/PixelFormats/Rgba32.PixelOperations.cs @@ -39,7 +39,7 @@ namespace ImageSharp /// https://github.com/dotnet/corefx/issues/15957 /// /// - internal static unsafe void ToVector4SimdAligned(BufferSpan sourceColors, BufferSpan destVectors, int count) + internal static void ToVector4SimdAligned(BufferSpan sourceColors, BufferSpan destVectors, int count) { if (!Vector.IsHardwareAccelerated) {