From 2440e432b8c3c5863ad3fd4f7879b3613f4df6cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Thu, 2 Jan 2025 12:45:08 +0100 Subject: [PATCH] remove comment --- extensions/noattach.c | 1 - 1 file changed, 1 deletion(-) diff --git a/extensions/noattach.c b/extensions/noattach.c index fbef4033..a66df12e 100644 --- a/extensions/noattach.c +++ b/extensions/noattach.c @@ -13,7 +13,6 @@ __declspec(dllexport) int sqlite3_noattach_init(sqlite3 *db, char **pzErrMsg, const sqlite3_api_routines *pApi) { SQLITE_EXTENSION_INIT2(pApi); - // trigger build int rc = sqlite3_set_authorizer(db, deny_attach_authorizer, 0); if (rc != SQLITE_OK) { *pzErrMsg = sqlite3_mprintf("Tenancy: Failed to set authorizer");