Removing commented out code.
authorahsonkhan <ahson_ahmedk@yahoo.com>
Tue, 14 Feb 2017 07:49:19 +0000 (23:49 -0800)
committerahsonkhan <ahson_ahmedk@yahoo.com>
Wed, 15 Feb 2017 01:17:56 +0000 (17:17 -0800)
src/mscorlib/src/System/Span.cs

index 322ed0f..5d6b8ad 100644 (file)
@@ -449,23 +449,6 @@ namespace System
         public static Span<T> Empty => default(Span<T>);
     }
 
-    /*public static class RuntimeImports
-    {
-        // Non-inlinable wrapper around the QCall that avoids poluting the fast path
-        // with P/Invoke prolog/epilog.
-        [MethodImplAttribute(MethodImplOptions.NoInlining)]
-        internal unsafe static void RhZeroMemory(ref byte b, nuint byteLength)
-        {
-            fixed (byte* bytePointer = &b)
-            {
-                RhZeroMemory(bytePointer, byteLength);
-            }
-        }
-
-        [DllImport(JitHelpers.QCall, CharSet = CharSet.Unicode)]
-        extern internal unsafe static void RhZeroMemory(byte* b, nuint byteLength);
-    }*/
-
     public static class Span
     {
         /// <summary>