Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Toub <stoub@microsoft.com>2017-09-24 16:45:07 +0300
committerGitHub <noreply@github.com>2017-09-24 16:45:07 +0300
commita7f6f470cb2c4cdaafdc3ad85e2520992a8db265 (patch)
tree1c4f65cb2a3e0892b141ab6db0abbce3ea202ea5 /src/System.Memory/ref
parentf25f97d837a33534f5a6e2f7da9c0989210d3f4c (diff)
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
Diffstat (limited to 'src/System.Memory/ref')
-rw-r--r--src/System.Memory/ref/System.Memory.csproj1
1 files changed, 0 insertions, 1 deletions
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 @@
<CLSCompliant>false</CLSCompliant>
<ProjectGuid>{E883935B-D8FD-4FC9-A189-9D9E7F7EF550}</ProjectGuid>
<IsPartialFacadeAssembly Condition="'$(TargetGroup)' == 'netcoreapp' Or '$(TargetGroup)' == 'uap'">true</IsPartialFacadeAssembly>
- <LangVersion>7.2</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netstandard-Debug|AnyCPU'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netstandard-Release|AnyCPU'" />