From: Jürg Billeter Date: Sat, 21 Aug 2010 16:49:38 +0000 (+0200) Subject: Unable to chain up to base constructor is fatal X-Git-Tag: 0.11.0~127 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=559bbfb765dfdc2472b6ef2d2179c348fa09f828;p=thirdparty%2Fvala.git Unable to chain up to base constructor is fatal --- diff --git a/vala/valacreationmethod.vala b/vala/valacreationmethod.vala index 5dbd6f0e5..1243be218 100644 --- a/vala/valacreationmethod.vala +++ b/vala/valacreationmethod.vala @@ -196,17 +196,9 @@ public class Vala.CreationMethod : Method { // chain up impossible } else if (cl.base_class.default_construction_method == null || cl.base_class.default_construction_method.access == SymbolAccessibility.PRIVATE) { - if (analyzer.context.profile == Profile.GOBJECT) { - Report.warning (source_reference, "unable to chain up to private base constructor"); - } else { - Report.error (source_reference, "unable to chain up to private base constructor"); - } + Report.error (source_reference, "unable to chain up to private base constructor"); } else if (cl.base_class.default_construction_method.get_required_arguments () > 0) { - if (analyzer.context.profile == Profile.GOBJECT) { - Report.warning (source_reference, "unable to chain up to base constructor requiring arguments"); - } else { - Report.error (source_reference, "unable to chain up to base constructor requiring arguments"); - } + Report.error (source_reference, "unable to chain up to base constructor requiring arguments"); } else { var old_insert_block = analyzer.insert_block; analyzer.current_symbol = body;