2008-02-01 Jb Evain <jbevain@novell.com>
authorJb Evain <jbevain@gmail.com>
Fri, 1 Feb 2008 21:12:59 +0000 (21:12 -0000)
committerJb Evain <jbevain@gmail.com>
Fri, 1 Feb 2008 21:12:59 +0000 (21:12 -0000)
* Funcs.cs: gross hack for SL 1.1a.
I hate myself, I hate myself.

svn path=/trunk/mcs/; revision=94570

mcs/class/System.Core/System/ChangeLog
mcs/class/System.Core/System/Funcs.cs

index fb72111016382bb43a10674b4e06d0fde6b1cd04..5151996181d78e8e6667a3e32ee0ed1ff3d85283 100644 (file)
@@ -1,3 +1,8 @@
+2008-02-01  Jb Evain  <jbevain@novell.com>
+
+       * Funcs.cs: gross hack for SL 1.1a.
+       I hate myself, I hate myself.
+
 2008-01-24  Stephane Delcroix  <sdelcroix@novell.com>
 
        * TimeZoneInfo.TransitionTime.cs: check for a whole number of
index 3192cfc2ae43121b62ebeac85df762e0ed060798..eb25703683d8df5af4383272e286a6ea07bfe566 100644 (file)
 //
 
 
+#if NET_2_1 // temporary hack. SL 1.1 fly high on crack
+namespace System.Linq
+#else
 namespace System
+#endif
 {
        public delegate TResult Func<TResult> ();
        public delegate TResult Func<T, TResult> (T arg1);