This commit is contained in:
Scott E. Graves 2024-10-22 15:05:54 -05:00
parent 1d7f5b7ef1
commit 312e4bc0f1
4 changed files with 1 additions and 8 deletions

View File

@ -46,8 +46,6 @@ public:
using wd_t = where_data_t<w_t>; using wd_t = where_data_t<w_t>;
std::unique_ptr<wd_t> where_data; std::unique_ptr<wd_t> where_data;
void clear();
}; };
using row = db_row<context>; using row = db_row<context>;

View File

@ -34,8 +34,6 @@ public:
bool or_replace{false}; bool or_replace{false};
std::map<std::string, db_types_t> values; std::map<std::string, db_types_t> values;
void clear();
}; };
using row = db_row<context>; using row = db_row<context>;

View File

@ -65,8 +65,6 @@ public:
std::optional<std::pair<std::string, bool>> order_by; std::optional<std::pair<std::string, bool>> order_by;
std::unique_ptr<wd_t> where_data; std::unique_ptr<wd_t> where_data;
void clear();
}; };
public: public:

View File

@ -57,8 +57,7 @@ public:
std::optional<std::pair<std::string, bool>> order_by; std::optional<std::pair<std::string, bool>> order_by;
std::unique_ptr<wd_t> where_data; std::unique_ptr<wd_t> where_data;
clear();
void clear();
}; };
using row = db_row<context>; using row = db_row<context>;