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

Fix some coding style issues.

This commit is contained in:
Sadie Powell
2024-02-26 15:27:01 +00:00
parent e341cac8d6
commit c6cb4ba159
78 changed files with 195 additions and 195 deletions
+3 -3
View File
@@ -93,7 +93,7 @@ public:
throw ModuleException("No CertFP");
}
Session* CreateSession(const Anope::string &uid) override
Session *CreateSession(const Anope::string &uid) override
{
return new Session(this, uid);
}
@@ -206,7 +206,7 @@ public:
}
}
Session* session = GetSession(m.source);
Session *session = GetSession(m.source);
if (m.type == "S")
{
@@ -267,7 +267,7 @@ public:
return agent;
}
Session* GetSession(const Anope::string &uid) override
Session *GetSession(const Anope::string &uid) override
{
std::map<Anope::string, Session *>::iterator it = sessions.find(uid);
if (it != sessions.end())