~ubuntu-branches/ubuntu/trusty/vala/trusty

« back to all changes in this revision

Viewing changes to vala/valapostfixexpression.c

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell
  • Date: 2011-03-17 09:35:15 UTC
  • mfrom: (1.5.17 upstream)
  • Revision ID: james.westby@ubuntu.com-20110317093515-veyqriw9egujkws2
Tags: 0.11.7-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
658
658
 
659
659
void vala_postfix_expression_set_inner (ValaPostfixExpression* self, ValaExpression* value) {
660
660
        ValaExpression* _tmp0_;
661
 
        ValaExpression* _tmp1_;
662
661
        g_return_if_fail (self != NULL);
663
662
        _tmp0_ = _vala_code_node_ref0 (value);
664
 
        _tmp1_ = _tmp0_;
665
663
        _vala_code_node_unref0 (self->priv->_inner);
666
 
        self->priv->_inner = _tmp1_;
 
664
        self->priv->_inner = _tmp0_;
667
665
}
668
666
 
669
667