From ecf80bca64f1e1a0c83ec0b90f370f41db477024 Mon Sep 17 00:00:00 2001 From: Joseph Spiros Date: Fri, 19 Sep 2008 12:35:10 +0000 Subject: [PATCH] Oops, defined the sqlite3_*_objc_object functions as "static" instead of "extern". Fixed! --- ITSQLite3Database.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ITSQLite3Database.h b/ITSQLite3Database.h index ed13477..a8b93b0 100644 --- a/ITSQLite3Database.h +++ b/ITSQLite3Database.h @@ -12,8 +12,8 @@ #import #import -static int sqlite3_bind_objc_object(sqlite3_stmt *statement, int index, id object); -static id sqlite3_column_objc_object(sqlite3_stmt *statement, int columnIndex); +extern int sqlite3_bind_objc_object(sqlite3_stmt *statement, int index, id object); +extern id sqlite3_column_objc_object(sqlite3_stmt *statement, int columnIndex); @interface ITSQLite3Database : NSObject { NSString *dbPath; -- 2.20.1