From 1f4872769d93b8cb6a6c23fa12889873bb048d75 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Thu, 10 Oct 2024 14:33:37 -0500 Subject: [PATCH] updated build system --- support/include/utils/db/sqlite/db_where_t.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/support/include/utils/db/sqlite/db_where_t.hpp b/support/include/utils/db/sqlite/db_where_t.hpp index ea0dc5b1..72351e2a 100644 --- a/support/include/utils/db/sqlite/db_where_t.hpp +++ b/support/include/utils/db/sqlite/db_where_t.hpp @@ -46,11 +46,11 @@ struct db_next_t final { } [[nodiscard]] auto get_next() -> w_t & { - return std::get(std::prev(owner->sub_actions.end())); + return *std::prev(owner->sub_actions.end()); } [[nodiscard]] auto get_next() const -> const w_t & { - return std::get(std::prev(owner->sub_actions.end())); + return *std::prev(owner->sub_actions.end()); } [[nodiscard]] auto go() const -> auto { return op_t{ctx}.go(); }