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

Use C++11 style class/struct initialisation.

This commit is contained in:
Sadie Powell
2022-01-03 18:34:16 +00:00
parent dfcc025a19
commit 7531e90499
64 changed files with 188 additions and 230 deletions
+1 -1
View File
@@ -76,7 +76,7 @@ Serializable* Memo::Unserialize(Serializable *obj, Serialize::Data &data)
return m;
}
MemoInfo::MemoInfo() : memomax(0), memos("Memo")
MemoInfo::MemoInfo() : memos("Memo")
{
}