summaryrefslogtreecommitdiff
path: root/include/modules/sql.h
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2025-03-11 13:05:43 +0000
committerSadie Powell <sadie@witchery.services>2025-03-12 00:16:15 +0000
commit2276c62ff02755f536de7d153368c3b9547beb23 (patch)
tree77ad165cb9a1aa590f82b980d80493774e4aafe1 /include/modules/sql.h
parentfb0ee27df030547b9f79d4c485c0e6300e1c96bb (diff)
Move serialization data type logic from sql.h to the core.
Diffstat (limited to 'include/modules/sql.h')
-rw-r--r--include/modules/sql.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/include/modules/sql.h b/include/modules/sql.h
index 81af2e597..18d169d81 100644
--- a/include/modules/sql.h
+++ b/include/modules/sql.h
@@ -19,7 +19,6 @@ namespace SQL
public:
typedef std::map<Anope::string, std::stringstream *> Map;
Map data;
- std::map<Anope::string, Serialize::DataType> types;
~Data()
{
@@ -59,19 +58,6 @@ namespace SQL
delete value;
this->data.clear();
}
-
- void SetType(const Anope::string &key, Serialize::DataType dt) override
- {
- this->types[key] = dt;
- }
-
- Serialize::DataType GetType(const Anope::string &key) const override
- {
- auto it = this->types.find(key);
- if (it != this->types.end())
- return it->second;
- return Serialize::DataType::TEXT;
- }
};
/** A SQL exception, can be thrown at various points