From: Jürg Billeter Date: Mon, 19 Jan 2009 16:18:23 +0000 (+0000) Subject: More fixes, patch by Matías De la Puente X-Git-Tag: 0.5.7~76 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0ba9dff9f12bb357d1635fbff939c0a788d951da;p=thirdparty%2Fvala.git More fixes, patch by Matías De la Puente 2009-01-19 Jürg Billeter * vapi/gsl.vapi: More fixes, patch by Matías De la Puente svn path=/trunk/; revision=2394 --- diff --git a/ChangeLog b/ChangeLog index df12f7545..9bc2e9a42 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-01-19 Jürg Billeter + + * vapi/gsl.vapi: + + More fixes, patch by Matías De la Puente + 2009-01-19 Jürg Billeter * gobject/valaccodedelegatemodule.vala: 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);