summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2009-05-07 14:41:30 -0400
committerColin Walters <walters@verbum.org>2009-05-07 15:27:00 -0400
commitc54f10f4caef35b42229c48951ee647ef05ab557 (patch)
treee1ad7c73a5e66efd10d265c5b96c11dbaad91590
parentbc194c1468b519706904d16ed72a67fe3154fa13 (diff)
downloadgobject-introspection-c54f10f4caef35b42229c48951ee647ef05ab557.tar.gz
Remove (out) annotation for now from Everything structs
Right now these annotations don't work; (out) is for callee-allocates. For more information see http://bugzilla.gnome.org/show_bug.cgi?id=573314
-rw-r--r--tests/everything/everything.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/everything/everything.c b/tests/everything/everything.c
index 3205c236..291fc704 100644
--- a/tests/everything/everything.c
+++ b/tests/everything/everything.c
@@ -563,7 +563,7 @@ test_enum_param(TestEnum e)
/**
* test_struct_a_clone:
* @a: the structure
- * @a_out: (out): the cloned structure
+ * @a_out: the cloned structure
*
* Make a copy of a TestStructA
*/
@@ -577,7 +577,7 @@ test_struct_a_clone (TestStructA *a,
/**
* test_struct_b_clone:
* @b: the structure
- * @b_out: (out): the cloned structure
+ * @b_out: the cloned structure
*
* Make a copy of a TestStructB
*/