From 4d421eb133cb349946eb86f230bdf494cec6ed9e 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 372ac2392..63fbdcae5 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) {