Warnings cleanup
[mono.git] / mcs / class / corlib / System.Reflection.Emit / MonoArrayMethod.cs
index 2a487430dcb7680190a1dcf7b32d187c4cf31a9e..a64112f7c4236c6a3e5ba2c7002d2d63de86939d 100644 (file)
@@ -38,6 +38,7 @@ using System.Runtime.InteropServices;
 
 namespace System.Reflection {
        internal class MonoArrayMethod: MethodInfo {
+#pragma warning disable 649
                internal RuntimeMethodHandle mhandle;
                internal Type parent;
                internal Type ret;
@@ -45,6 +46,7 @@ namespace System.Reflection {
                internal string name;
                internal int table_idx;
                internal CallingConventions call_conv;
+#pragma warning restore 649            
 
                internal MonoArrayMethod (Type arrayClass, string methodName, CallingConventions callingConvention, Type returnType, Type[] parameterTypes) {
                        name = methodName;