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

« back to all changes in this revision

Viewing changes to ccode/valaccodecasestatement.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:
211
211
 
212
212
void vala_ccode_case_statement_set_expression (ValaCCodeCaseStatement* self, ValaCCodeExpression* value) {
213
213
        ValaCCodeExpression* _tmp0_;
214
 
        ValaCCodeExpression* _tmp1_;
215
214
        g_return_if_fail (self != NULL);
216
215
        _tmp0_ = _vala_ccode_node_ref0 (value);
217
 
        _tmp1_ = _tmp0_;
218
216
        _vala_ccode_node_unref0 (self->priv->_expression);
219
 
        self->priv->_expression = _tmp1_;
 
217
        self->priv->_expression = _tmp0_;
220
218
}
221
219
 
222
220