~ubuntu-branches/ubuntu/maverick/vala/maverick

« back to all changes in this revision

Viewing changes to ccode/valaccodecontinuestatement.c

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-04-02 10:10:55 UTC
  • mfrom: (1.4.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20100402101055-qbx3okzv0tnp3wpp
Tags: 0.8.0-0ubuntu1
* New upstream release:
  - Infer type arguments when calling generic methods.
  - Support `in' operator for arrays.
  - Add experimental support for regular expression literals.
  - Add experimental support for chained relational expressions.
  - Add va_list support.
  - Add clutter-gtk-0.10 bindings (Gordon Allott).
  - Add gdl-1.0 bindings (Nicolas Joseph).
  - Add gstreamer-app-0.10 bindings (Sebastian Dröge).
  - Add gstreamer-cdda-0.10 bindings (Sebastian Dröge).
  - Add gudev-1.0 bindings (Jim Nelson).
  - Add libgda-report-4.0 bindings (Shawn Ferris).
  - Add libgvc (graphviz) bindings (Martin Olsson).
  - Add purple bindings (Adrien Bustany).
  - Many bug fixes and binding updates.
* debian/patches/99_ltmain_as-needed.patch: refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
121
121
void vala_ccode_node_unref (gpointer instance);
122
122
GParamSpec* vala_param_spec_ccode_node (const gchar* name, const gchar* nick, const gchar* blurb, GType object_type, GParamFlags flags);
123
123
void vala_value_set_ccode_node (GValue* value, gpointer v_object);
 
124
void vala_value_take_ccode_node (GValue* value, gpointer v_object);
124
125
gpointer vala_value_get_ccode_node (const GValue* value);
125
126
GType vala_ccode_node_get_type (void);
126
127
gpointer vala_ccode_writer_ref (gpointer instance);
127
128
void vala_ccode_writer_unref (gpointer instance);
128
129
GParamSpec* vala_param_spec_ccode_writer (const gchar* name, const gchar* nick, const gchar* blurb, GType object_type, GParamFlags flags);
129
130
void vala_value_set_ccode_writer (GValue* value, gpointer v_object);
 
131
void vala_value_take_ccode_writer (GValue* value, gpointer v_object);
130
132
gpointer vala_value_get_ccode_writer (const GValue* value);
131
133
GType vala_ccode_writer_get_type (void);
132
134
GType vala_ccode_statement_get_type (void);
179
181
 
180
182
 
181
183
GType vala_ccode_continue_statement_get_type (void) {
182
 
        static GType vala_ccode_continue_statement_type_id = 0;
183
 
        if (vala_ccode_continue_statement_type_id == 0) {
 
184
        static volatile gsize vala_ccode_continue_statement_type_id__volatile = 0;
 
185
        if (g_once_init_enter (&vala_ccode_continue_statement_type_id__volatile)) {
184
186
                static const GTypeInfo g_define_type_info = { sizeof (ValaCCodeContinueStatementClass), (GBaseInitFunc) NULL, (GBaseFinalizeFunc) NULL, (GClassInitFunc) vala_ccode_continue_statement_class_init, (GClassFinalizeFunc) NULL, NULL, sizeof (ValaCCodeContinueStatement), 0, (GInstanceInitFunc) vala_ccode_continue_statement_instance_init, NULL };
 
187
                GType vala_ccode_continue_statement_type_id;
185
188
                vala_ccode_continue_statement_type_id = g_type_register_static (VALA_TYPE_CCODE_STATEMENT, "ValaCCodeContinueStatement", &g_define_type_info, 0);
 
189
                g_once_init_leave (&vala_ccode_continue_statement_type_id__volatile, vala_ccode_continue_statement_type_id);
186
190
        }
187
 
        return vala_ccode_continue_statement_type_id;
 
191
        return vala_ccode_continue_statement_type_id__volatile;
188
192
}
189
193
 
190
194