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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2012-12-04 22:28:09 +0400
committerZoltan Varga <vargaz@gmail.com>2012-12-04 22:28:09 +0400
commitd1bf04d303bed4e5cd762f483519b9ccf2882f6c (patch)
tree3103b352f9e003340661503e9ccec20617eeab65
parent6769a30f4a7bb6fc5fcaa26b79e3c31c64cb2b3b (diff)
Call the specialized SortImpl<T> implementation from Sort<T>.
-rw-r--r--mcs/class/corlib/System/Array.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/corlib/System/Array.cs b/mcs/class/corlib/System/Array.cs
index 8c6bcc454a2..de132242a43 100644
--- a/mcs/class/corlib/System/Array.cs
+++ b/mcs/class/corlib/System/Array.cs
@@ -1715,7 +1715,7 @@ namespace System
if (index + length > array.Length)
throw new ArgumentException ();
- SortImpl<T, T> (array, null, index, length, comparer);
+ SortImpl<T> (array, index, length, comparer);
}
[ReliabilityContractAttribute (Consistency.MayCorruptInstance, Cer.MayFail)]