From: Juerg Billeter Date: Sun, 25 May 2008 13:40:55 +0000 (+0000) Subject: use [Compact] attribute X-Git-Tag: VALA_0_3_3~131 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0ff8c5b1bba2b74ca854130bbf97e12ae8669510;p=thirdparty%2Fvala.git use [Compact] attribute 2008-05-25 Juerg Billeter * vapi/sqlite3.vapi: use [Compact] attribute svn path=/trunk/; revision=1427 --- diff --git a/ChangeLog b/ChangeLog index ec50e720b..a4f378c5b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-05-25 Jürg Billeter + + * vapi/sqlite3.vapi: use [Compact] attribute + 2008-05-25 Jürg Billeter * vala/valasemanticanalyzer.vala: diff --git a/vapi/sqlite3.vapi b/vapi/sqlite3.vapi index 355a2f446..ea2bbd2ec 100644 --- a/vapi/sqlite3.vapi +++ b/vapi/sqlite3.vapi @@ -23,6 +23,7 @@ [CCode (lower_case_cprefix = "sqlite3_", cheader_filename = "sqlite3.h")] namespace Sqlite { /* Database Connection Handle */ + [Compact] [CCode (free_function = "sqlite3_close", cname = "sqlite3", cprefix = "sqlite3_")] public class Database { public int busy_timeout (int ms); @@ -45,6 +46,7 @@ namespace Sqlite { } /* Dynamically Typed Value Object */ + [Compact] [CCode (cname = "sqlite3_value")] public class Value { [CCode (cname = "sqlite3_value_blob")] @@ -145,6 +147,7 @@ namespace Sqlite { public const int TEXT; /* SQL Statement Object */ + [Compact] [CCode (free_function = "sqlite3_finalize", cname = "sqlite3_stmt", cprefix = "sqlite3_")] public class Statement { public int bind_parameter_count ();