From 312e4bc0f1055c6b0a6df92f8fd5d6fc3e4c759d Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Tue, 22 Oct 2024 15:05:54 -0500 Subject: [PATCH] fix --- support/include/utils/db/sqlite/db_delete.hpp | 2 -- support/include/utils/db/sqlite/db_insert.hpp | 2 -- support/include/utils/db/sqlite/db_select.hpp | 2 -- support/include/utils/db/sqlite/db_update.hpp | 3 +-- 4 files changed, 1 insertion(+), 8 deletions(-) diff --git a/support/include/utils/db/sqlite/db_delete.hpp b/support/include/utils/db/sqlite/db_delete.hpp index a5b50b27..02b743ce 100644 --- a/support/include/utils/db/sqlite/db_delete.hpp +++ b/support/include/utils/db/sqlite/db_delete.hpp @@ -46,8 +46,6 @@ public: using wd_t = where_data_t; std::unique_ptr where_data; - - void clear(); }; using row = db_row; diff --git a/support/include/utils/db/sqlite/db_insert.hpp b/support/include/utils/db/sqlite/db_insert.hpp index c150e5e1..6a03829f 100644 --- a/support/include/utils/db/sqlite/db_insert.hpp +++ b/support/include/utils/db/sqlite/db_insert.hpp @@ -34,8 +34,6 @@ public: bool or_replace{false}; std::map values; - - void clear(); }; using row = db_row; diff --git a/support/include/utils/db/sqlite/db_select.hpp b/support/include/utils/db/sqlite/db_select.hpp index 3778c4a3..127eee09 100644 --- a/support/include/utils/db/sqlite/db_select.hpp +++ b/support/include/utils/db/sqlite/db_select.hpp @@ -65,8 +65,6 @@ public: std::optional> order_by; std::unique_ptr where_data; - - void clear(); }; public: diff --git a/support/include/utils/db/sqlite/db_update.hpp b/support/include/utils/db/sqlite/db_update.hpp index 222dd237..cfa35d2e 100644 --- a/support/include/utils/db/sqlite/db_update.hpp +++ b/support/include/utils/db/sqlite/db_update.hpp @@ -57,8 +57,7 @@ public: std::optional> order_by; std::unique_ptr where_data; - - void clear(); + clear(); }; using row = db_row;