Fix the build
authorMiguel de Icaza <miguel@gnome.org>
Sun, 8 Feb 2015 18:52:19 +0000 (13:52 -0500)
committerMiguel de Icaza <miguel@gnome.org>
Sun, 8 Feb 2015 18:52:29 +0000 (13:52 -0500)
mcs/tools/monop/outline.cs

index 67e72d29f81bf9cd653c24f8b59c6b80ffbbbceb..63b2359b3dd2bf09dfd902604fa2e9b007a6b00b 100644 (file)
@@ -55,6 +55,11 @@ public class Outline {
        Universe universe;
        Assembly mscorlib;
 
+       public Outline (System.Type t, TextWriter output, bool declared_only, bool show_private, bool filter_obsolete)
+       {
+               throw new NotImplementedException ();
+       }
+       
        public Outline (Universe universe, Assembly mscorlib, Type t, TextWriter output, bool declared_only, bool show_private, bool filter_obsolete)
        {
                if (universe == null)
@@ -91,7 +96,7 @@ public class Outline {
                type_value_type = typeof (ValueType);
                type_int = typeof (int);
                type_flags_attribute = typeof (FlagsAttribute);
-               type_obsolete_attribute = typeof (ObsoleteAttribuet);
+               type_obsolete_attribute = typeof (ObsoleteAttribute);
                type_param_array_attribute = typeof (ParamArrayAttribute);
        }
 #endif