1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 12:43:12 +02:00

Serialize using mutable objects not immutable ones.

This commit is contained in:
Sadie Powell
2025-05-16 15:18:00 +01:00
parent 3da8244de5
commit be5a0e8108
33 changed files with 40 additions and 40 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ Memo::Type::Type()
{
}
void Memo::Type::Serialize(const Serializable *obj, Serialize::Data &data) const
void Memo::Type::Serialize(Serializable *obj, Serialize::Data &data) const
{
const auto *m = static_cast<const Memo *>(obj);
data.Store("owner", m->owner);