summaryrefslogtreecommitdiff
path: root/modules/chanserv/cs_mode.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2025-05-16 15:18:00 +0100
committerSadie Powell <sadie@witchery.services>2025-05-16 15:18:00 +0100
commitbe5a0e8108cb5d17b4e36f5858e1700ccb645c8b (patch)
tree759d3f6b08f73895df1d0017b70b11d223db1eb5 /modules/chanserv/cs_mode.cpp
parent3da8244de5d013cc9c390c194c195f5c4a81a0da (diff)
Serialize using mutable objects not immutable ones.
Diffstat (limited to 'modules/chanserv/cs_mode.cpp')
-rw-r--r--modules/chanserv/cs_mode.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/chanserv/cs_mode.cpp b/modules/chanserv/cs_mode.cpp
index d6339311e..14d5d27c3 100644
--- a/modules/chanserv/cs_mode.cpp
+++ b/modules/chanserv/cs_mode.cpp
@@ -39,7 +39,7 @@ struct ModeLockTypeImpl final
: Serialize::Type("ModeLock")
{
}
- void Serialize(const Serializable *obj, Serialize::Data &data) const override;
+ void Serialize(Serializable *obj, Serialize::Data &data) const override;
Serializable *Unserialize(Serializable *obj, Serialize::Data &data) const override;
};
@@ -211,7 +211,7 @@ struct ModeLocksImpl final
}
};
-void ModeLockTypeImpl::Serialize(const Serializable *obj, Serialize::Data &data) const
+void ModeLockTypeImpl::Serialize(Serializable *obj, Serialize::Data &data) const
{
const auto *ml = static_cast<const ModeLockImpl *>(obj);
data.Store("ci", ml->ci);