Implement mono_gc_alloc_fixed on Boehm to be uncollectable. This matches SGen behavio...
[mono.git] / mcs / class / corlib / System.Reflection.Emit / PackingSize.cs
index 2b4183a97107234452ecaac9bcfc137b20c84939..ad6be1d1d74a4f0dcc22d469046289c0bc5cd826 100644 (file)
@@ -32,13 +32,8 @@ namespace System.Reflection.Emit {
        /// <summary>
        ///  Specifies the packing size (data alignment) of a type.
        /// </summary>
-#if NET_2_0
-#else
-       [Flags]
-#endif
-#if NET_2_0
        [ComVisible (true)]
-#endif
+       [Serializable]
        public enum PackingSize {
 
                /// <summary>
@@ -66,15 +61,11 @@ namespace System.Reflection.Emit {
                /// </summary>
                Size16 = 16,
 
-#if NET_2_0
                Size32 = 32,
 
                Size64 = 64,
 
                Size128 = 128
-#endif
        }
 
 }
-
-