Remove unnecessary Pack directive to fix build break (#20681)
authordotnet-maestro-bot <dotnet-maestro-bot@microsoft.com>
Tue, 30 Oct 2018 12:18:38 +0000 (05:18 -0700)
committerJan Kotas <jkotas@microsoft.com>
Tue, 30 Oct 2018 12:18:38 +0000 (05:18 -0700)
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
src/System.Private.CoreLib/shared/System/Number.NumberBuffer.cs

index 6636383..f96687e 100644 (file)
@@ -18,7 +18,6 @@ namespace System
         private const int UInt32NumberBufferLength = 10 + 1;   // 10 for the longest input: 4,294,967,295
         private const int UInt64NumberBufferLength = 20 + 1;   // 20 for the longest input: 18,446,744,073,709,551,615
 
-        [StructLayout(LayoutKind.Sequential, Pack = 1)]
         internal unsafe ref struct NumberBuffer
         {
             public int Precision;