From ffdea97de3ead0f9ac95e8415cdcaf39a9b4c8ce Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Tue, 8 Oct 2024 11:08:47 -0500 Subject: [PATCH] fix --- repertory/librepertory/include/database/db_common.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/repertory/librepertory/include/database/db_common.hpp b/repertory/librepertory/include/database/db_common.hpp index 8d0a1fdb..50b2270e 100644 --- a/repertory/librepertory/include/database/db_common.hpp +++ b/repertory/librepertory/include/database/db_common.hpp @@ -234,8 +234,8 @@ struct db_next_t final { using group_func_t = std::function; - [[nodiscard]] auto column(std::string column_name) -> cn_t { - return next.column(column_name); + [[nodiscard]] auto where(std::string column_name) -> cn_t { + return next.where(column_name); } [[nodiscard]] auto dump(std::int64_t &idx) const -> std::string { @@ -257,8 +257,8 @@ struct db_next_limit_t final { using group_func_t = std::function; - [[nodiscard]] auto column(std::string column_name) -> cn_t { - return next.column(column_name); + [[nodiscard]] auto where(std::string column_name) -> cn_t { + return next.where(column_name); } [[nodiscard]] auto dump(std::int64_t &idx) const -> std::string {