~ubuntu-branches/ubuntu/vivid/vala/vivid

« back to all changes in this revision

Viewing changes to ccode/valaccodedeclaration.vala

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2010-07-28 07:58:01 UTC
  • mfrom: (1.5.5 upstream) (7.3.14 experimental)
  • Revision ID: james.westby@ubuntu.com-20100728075801-18u9cg5hv5oety6m
Tags: 0.9.4-1
New upstream development release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* valaccodedeclaration.vala
2
2
 *
3
 
 * Copyright (C) 2006-2008  Jürg Billeter
 
3
 * Copyright (C) 2006-2010  Jürg Billeter
4
4
 *
5
5
 * This library is free software; you can redistribute it and/or
6
6
 * modify it under the terms of the GNU Lesser General Public
82
82
                        if ((modifiers & CCodeModifiers.EXTERN) != 0 && !has_initializer ()) {
83
83
                                writer.write_string ("extern ");
84
84
                        }
 
85
                        if ((modifiers & CCodeModifiers.THREAD_LOCAL) != 0) {
 
86
                                writer.write_string ("thread_local ");
 
87
                        }
85
88
                        writer.write_string (type_name);
86
89
                        writer.write_string (" ");
87
90