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

Use auto in places where the type is unambiguous.

This commit is contained in:
Sadie Powell
2024-01-06 13:23:37 +00:00
parent de918ef9cf
commit a9ab0c72a6
39 changed files with 62 additions and 62 deletions
+1 -1
View File
@@ -92,7 +92,7 @@ Serializable* EntryMsgImpl::Unserialize(Serializable *obj, Serialize::Data &data
data["when"] >> swhen;
EntryMsgImpl *m = new EntryMsgImpl(ci, screator, smessage, swhen);
auto *m = new EntryMsgImpl(ci, screator, smessage, swhen);
(*messages)->push_back(m);
return m;
}