From a7f6f470cb2c4cdaafdc3ad85e2520992a8db265 Mon Sep 17 00:00:00 2001 From: Stephen Toub Date: Sun, 24 Sep 2017 09:45:07 -0400 Subject: Use stackalloc directly into Span (#24212) * Use stackalloc directly into Span We have a few places in corefx where we were stackalloc'ing into a temporary pointer and then creating a Span from that. Now that we're using a C# compiler which supports stackalloc'ing directly into span, use that feature instead. * Address PR feedback --- src/System.Memory/ref/System.Memory.csproj | 1 - 1 file changed, 1 deletion(-) (limited to 'src/System.Memory/ref') diff --git a/src/System.Memory/ref/System.Memory.csproj b/src/System.Memory/ref/System.Memory.csproj index 6226292ea1..0d0db9a2fd 100644 --- a/src/System.Memory/ref/System.Memory.csproj +++ b/src/System.Memory/ref/System.Memory.csproj @@ -6,7 +6,6 @@ false {E883935B-D8FD-4FC9-A189-9D9E7F7EF550} true - 7.2 -- cgit v1.2.3