aboutsummaryrefslogtreecommitdiff
path: root/include/modules/ircv3.h
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-01-25 13:59:42 +0000
committerGravatar Sadie Powell2022-01-25 14:02:36 +0000
commitd79147e7afe2eca34780c607f78b11f8b3dd017d (patch)
treea3f9a145dd53f9c1c268ac9b521ac907b802eab0 /include/modules/ircv3.h
parentFix a few Doxygen comment errors. (diff)
Abolish the infernal space before accessibility keywords.
Diffstat (limited to 'include/modules/ircv3.h')
-rw-r--r--include/modules/ircv3.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/modules/ircv3.h b/include/modules/ircv3.h
index cb0b7853c..d98d6b167 100644
--- a/include/modules/ircv3.h
+++ b/include/modules/ircv3.h
@@ -32,7 +32,7 @@ namespace IRCv3
class IRCv3::WriteNeighborsWithCap final
: public User::ForEachNeighborHandler
{
- private:
+private:
const Cap::Capability& cap;
ClientProtocol::Event& protoev;
uint64_t sentid;
@@ -43,7 +43,7 @@ class IRCv3::WriteNeighborsWithCap final
user->Send(protoev);
}
- public:
+public:
WriteNeighborsWithCap(User* user, ClientProtocol::Event& ev, const Cap::Capability& capability, bool include_self = false)
: cap(capability)
, protoev(ev)
@@ -74,7 +74,7 @@ template <typename T>
class IRCv3::CapTag
: public ClientProtocol::MessageTagProvider
{
- protected:
+protected:
Cap::Capability cap;
const std::string tagname;
@@ -91,7 +91,7 @@ class IRCv3::CapTag
msg.AddTag(tagname, this, *val);
}
- public:
+public:
/** Constructor.
* @param mod Module that owns the tag.
* @param capname Name of the client capability.