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:
+3
-3
@@ -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())
|
||||
|
||||
Reference in New Issue
Block a user