summaryrefslogtreecommitdiff
path: root/examples/zigcrypto.zig
diff options
context:
space:
mode:
authorGravatar Tesseract222025-08-09 18:57:19 +0800
committerGravatar Tesseract222025-08-09 18:57:19 +0800
commite011e342420fe1f1f5d2fee932447b194f989032 (patch)
tree01c19ac7f5b7ce540cc3fd98581e29d8f7b782bd /examples/zigcrypto.zig
parentMerge pull request #188 from gracen-writes-code/master (diff)
downloadzig-sqlite-e011e342420fe1f1f5d2fee932447b194f989032.tar.gz
zig-sqlite-e011e342420fe1f1f5d2fee932447b194f989032.tar.xz
zig-sqlite-e011e342420fe1f1f5d2fee932447b194f989032.zip
chore: update to zig 0.15
Everything other than loadextension works. zig 0.15 remove usingnamespac, so tha whole mechanism has to be reworked, and idk how
Diffstat (limited to 'examples/zigcrypto.zig')
-rw-r--r--examples/zigcrypto.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/zigcrypto.zig b/examples/zigcrypto.zig
index 05c44a5..9489df1 100644
--- a/examples/zigcrypto.zig
+++ b/examples/zigcrypto.zig
@@ -39,7 +39,7 @@ fn createAllFunctions(db: *sqlite.Db) !void {
39 ); 39 );
40} 40}
41 41
42pub export fn sqlite3_zigcrypto_init(raw_db: *c.sqlite3, err_msg: [*c][*c]u8, api: *c.sqlite3_api_routines) callconv(.C) c_int { 42pub export fn sqlite3_zigcrypto_init(raw_db: *c.sqlite3, err_msg: [*c][*c]u8, api: *c.sqlite3_api_routines) callconv(.c) c_int {
43 _ = err_msg; 43 _ = err_msg;
44 44
45 c.sqlite3_api = api; 45 c.sqlite3_api = api;