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:
authorSebastien Pouliot <sebastien@ximian.com>2008-09-28 18:55:32 +0400
committerSebastien Pouliot <sebastien@ximian.com>2008-09-28 18:55:32 +0400
commit6fb0b958fa342a89bb2a05a1dc101ca955205ea8 (patch)
tree2494c327ae5133c0fa3f0d1f88841a1b332c39bc /mcs/class/System.Core/System.Linq/ChangeLog
parent77232da4fa136426c8c5d4342e7c94a081b16f6f (diff)
2008-09-28 Sebastien Pouliot <sebastien@ximian.com>
* Enumerable.cs: Add missing cast Average on IEnumerable<long?> to ensure the result is not truncated. [Found using Gendarme's ReviewCastOnIntegerDivisionRule] svn path=/trunk/mcs/; revision=114330
Diffstat (limited to 'mcs/class/System.Core/System.Linq/ChangeLog')
-rw-r--r--mcs/class/System.Core/System.Linq/ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/mcs/class/System.Core/System.Linq/ChangeLog b/mcs/class/System.Core/System.Linq/ChangeLog
index 0bbceee2172..c855640e0cd 100644
--- a/mcs/class/System.Core/System.Linq/ChangeLog
+++ b/mcs/class/System.Core/System.Linq/ChangeLog
@@ -1,3 +1,9 @@
+2008-09-28 Sebastien Pouliot <sebastien@ximian.com>
+
+ * Enumerable.cs: Add missing cast Average on IEnumerable<long?> to
+ ensure the result is not truncated.
+ [Found using Gendarme's ReviewCastOnIntegerDivisionRule]
+
2008-09-11 Jb Evain <jbevain@novell.com>
* Enumerable.cs (Iterate*): use a bool empty instead of an int counter.