From: Miguel de Icaza Date: Sun, 8 Feb 2015 18:52:19 +0000 (-0500) Subject: Fix the build X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=d12c06df593157f9d7b9ce7d10135ac4d32dc83e;p=mono.git Fix the build --- diff --git a/mcs/tools/monop/outline.cs b/mcs/tools/monop/outline.cs index 67e72d29f81..63b2359b3dd 100644 --- a/mcs/tools/monop/outline.cs +++ b/mcs/tools/monop/outline.cs @@ -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