~ubuntu-branches/ubuntu/quantal/vala/quantal

« back to all changes in this revision

Viewing changes to vala/valacodewriter.vala

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell
  • Date: 2011-02-15 11:44:25 UTC
  • mfrom: (1.5.16 upstream)
  • Revision ID: james.westby@ubuntu.com-20110215114425-8vtvfqmnely5x8tt
Tags: 0.11.6-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
864
864
                                ccode_params.append_printf ("%sarray_length = false", separator);
865
865
                                separator = ", ";
866
866
                        }
 
867
                        if (param.array_null_terminated && param.variable_type is ArrayType) {
 
868
                                ccode_params.append_printf ("%sarray_null_terminated = true", separator);
 
869
                                separator = ", ";
 
870
                        }
867
871
                        if (param.array_length_type != null && param.variable_type is ArrayType) {
868
872
                                ccode_params.append_printf ("%sarray_length_type = \"%s\"", separator, param.array_length_type);
869
873
                                separator = ", ";