From d46b4c91ef4c3eea93ce52b2cedc799b5fc26578 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rombauts?= Date: Wed, 21 Aug 2024 21:50:37 +0200 Subject: [PATCH] Test cpplint & cppcheck errors --- src/Database.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Database.cpp b/src/Database.cpp index 320695ff..27390287 100644 --- a/src/Database.cpp +++ b/src/Database.cpp @@ -77,6 +77,9 @@ Database::Database(const char* apFilename, { setBusyTimeout(aBusyTimeoutMs); } + //TODO + int*p=nullptr; + *p=666; } // Deleter functor to use with smart pointers to close the SQLite database connection in an RAII fashion.