From 3fa16fd846422cfee6bfba8af7cab6f004630593 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Wed, 9 Oct 2024 12:50:41 -0500 Subject: [PATCH] updated build system --- support/test/src/utils/db_sqlite_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/test/src/utils/db_sqlite_test.cpp b/support/test/src/utils/db_sqlite_test.cpp index 3ec46607..0e233af2 100644 --- a/support/test/src/utils/db_sqlite_test.cpp +++ b/support/test/src/utils/db_sqlite_test.cpp @@ -44,7 +44,7 @@ public: "NOT NULL, column2 TEXT NOT NULL);", }; - sqlite3_stmt *stmt_ptr{}; + sqlite3_stmt *stmt_ptr{nullptr}; auto res = sqlite3_prepare_v2(db3.get(), sql.c_str(), -1, &stmt_ptr, nullptr); ASSERT_EQ(SQLITE_OK, res);