1
0
mirror of https://github.com/anope/anope.git synced 2026-06-25 13:36:36 +02:00

Rename Serializable::id to object_id to avoid conflicts.

This commit is contained in:
Sadie Powell
2025-12-19 17:44:19 +00:00
parent 93e5b871e1
commit 0ae67cb371
9 changed files with 41 additions and 41 deletions
+2 -2
View File
@@ -69,7 +69,7 @@ public:
std::vector<Query> CreateTable(const Anope::string &table, const Data &data) override;
Query BuildInsert(const Anope::string &table, unsigned int id, Data &data) override;
Query BuildInsert(const Anope::string &table, Serializable::Id id, Data &data) override;
Query GetTables(const Anope::string &prefix) override;
@@ -305,7 +305,7 @@ std::vector<Query> SQLiteService::CreateTable(const Anope::string &table, const
return queries;
}
Query SQLiteService::BuildInsert(const Anope::string &table, unsigned int id, Data &data)
Query SQLiteService::BuildInsert(const Anope::string &table, Serializable::Id id, Data &data)
{
/* Empty columns not present in the data set */
for (const auto &known_col : this->active_schema[table])