2010-05-25 Jb Evain <jbevain@novell.com>
authorJb Evain <jbevain@gmail.com>
Tue, 25 May 2010 13:37:05 +0000 (13:37 -0000)
committerJb Evain <jbevain@gmail.com>
Tue, 25 May 2010 13:37:05 +0000 (13:37 -0000)
* MemoryMappedFileSecurity.cs: ifdef for NET_4_0.

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

mcs/class/System.Core/System.IO.MemoryMappedFiles/ChangeLog
mcs/class/System.Core/System.IO.MemoryMappedFiles/MemoryMappedFileSecurity.cs

index 461c74fddc7f4e47b1a4c964893a9856d28be1c0..538dabde21ba1f6c3e1a73a2db65b3cb7888eb07 100644 (file)
@@ -1,3 +1,7 @@
+2010-05-25  Jb Evain  <jbevain@novell.com>
+
+       * MemoryMappedFileSecurity.cs: ifdef for NET_4_0.
+
 2010-04-15  Jb Evain  <jbevain@novell.com>
 
        * MemoryMappedFile.cs: implement CreateOrOpen.
index 18b52d85e60d22673d6b2c127793cb8f142c4185..961e2c8164ea1f8d59f4edf76d1f15eccc489079 100644 (file)
@@ -1,5 +1,9 @@
+#if NET_4_0
+
 namespace System.IO.MemoryMappedFiles {
 
        public class MemoryMappedFileSecurity {
        }
-}
\ No newline at end of file
+}
+
+#endif