summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2009-01-19 16:18:23 +0000
committerJürg Billeter <juergbi@src.gnome.org>2009-01-19 16:18:23 +0000
commit0ba9dff9f12bb357d1635fbff939c0a788d951da (patch)
tree5bcc5d9ec53947df18b43e84a137a1e663dfe367
parentfc88de0cb5b287e29d88f308dad63033b9ea4529 (diff)
downloadvala-0ba9dff9f12bb357d1635fbff939c0a788d951da.tar.gz
More fixes, patch by Matías De la Puente
2009-01-19 Jürg Billeter <j@bitron.ch> * vapi/gsl.vapi: More fixes, patch by Matías De la Puente svn path=/trunk/; revision=2394
-rw-r--r--ChangeLog6
-rw-r--r--vapi/gsl.vapi8
2 files changed, 10 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index df12f7545..9bc2e9a42 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2009-01-19 Jürg Billeter <j@bitron.ch>
+ * vapi/gsl.vapi:
+
+ More fixes, patch by Matías De la Puente
+
+2009-01-19 Jürg Billeter <j@bitron.ch>
+
* gobject/valaccodedelegatemodule.vala:
Use correct C identifier for delegate target of static fields
diff --git a/vapi/gsl.vapi b/vapi/gsl.vapi
index 050ac3b7c..3ad99798e 100644
--- a/vapi/gsl.vapi
+++ b/vapi/gsl.vapi
@@ -1498,7 +1498,7 @@ namespace Gsl
[CCode (cname="gsl_vector_view", cheader_filename="gsl/gsl_vector_double.h")]
public struct VectorView
{
- public Vector vector;
+ public unowned Vector vector;
public static VectorView array (double[] v);
public static VectorView array_with_stride ([CCode (array_length = false)] double[] v, size_t stride, size_t n);
@@ -1572,7 +1572,7 @@ namespace Gsl
[CCode (cname="gsl_vector_complex_view", cheader_filename="gsl/gsl_vector_complex_double.h")]
public struct VectorComplexView
{
- public VectorComplex vector;
+ public unowned VectorComplex vector;
public static VectorComplexView array (double[] v);
public static VectorComplexView array_with_stride ([CCode (array_length = false)] double[] v, size_t stride, size_t n);
@@ -1648,7 +1648,7 @@ namespace Gsl
[CCode (cname="gsl_matrix_view", cheader_filename="gsl/gsl_matrix_double.h")]
public struct MatrixView
{
- public Matrix matrix;
+ public unowned Matrix matrix;
public static MatrixView array ([CCode (array_length = false)] double[] v, size_t n1, size_t n2);
public static MatrixView array_with_tda ([CCode (array_length = false)] double[] v, size_t n1, size_t n2, size_t tda);
@@ -1743,7 +1743,7 @@ namespace Gsl
[CCode (cname="gsl_matrix_complex_view", cheader_filename="gsl/gsl_matrix_complex_double.h")]
public struct MatrixComplexView
{
- public MatrixComplex matrix;
+ public unowned MatrixComplex matrix;
public static MatrixComplexView array ([CCode (array_length = false)] double[] v, size_t n1, size_t n2);
public static MatrixComplexView array_with_tda ([CCode (array_length = false)] double[] v, size_t n1, size_t n2, size_t tda);