]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
codegen: Drop useless comma expression in GObject module
authorLuca Bruno <lucabru@src.gnome.org>
Thu, 3 Mar 2011 17:57:12 +0000 (18:57 +0100)
committerLuca Bruno <lucabru@src.gnome.org>
Thu, 3 Mar 2011 18:53:01 +0000 (19:53 +0100)
codegen/valagobjectmodule.vala

index 34db16c86c52cabcc960354cf06be3beef8b327e..89432e929e5af74921b9fcb3b1b61435935cc063 100644 (file)
@@ -747,18 +747,16 @@ public class Vala.GObjectModule : GTypeModule {
                                // runtime check to ref_sink the instance if it's a floating type
                                base.visit_method_call (expr);
 
-                               var ccomma = new CCodeCommaExpression ();
                                var temp_var = get_temp_variable (expr.value_type, false, expr, false);
                                emit_temp_var (temp_var);
-                               ccomma.append_expression (new CCodeAssignment (get_variable_cexpression (temp_var.name), get_cvalue (expr)));
+                               ccode.add_assignment (get_variable_cexpression (temp_var.name), get_cvalue (expr));
 
                                var initiallyunowned_ccall = new CCodeFunctionCall (new CCodeIdentifier ("G_IS_INITIALLY_UNOWNED"));
                                initiallyunowned_ccall.add_argument (get_variable_cexpression (temp_var.name));
                                var sink_ref_ccall = new CCodeFunctionCall (new CCodeIdentifier ("g_object_ref_sink"));
                                sink_ref_ccall.add_argument (get_variable_cexpression (temp_var.name));
-                               ccomma.append_expression (new CCodeConditionalExpression (initiallyunowned_ccall, sink_ref_ccall, get_variable_cexpression (temp_var.name)));
 
-                               set_cvalue (expr, ccomma);
+                               set_cvalue (expr, new CCodeConditionalExpression (initiallyunowned_ccall, sink_ref_ccall, get_variable_cexpression (temp_var.name)));
                                return;
                        } else if (ma.symbol_reference == gobject_type) {
                                // Object (...) chain up