summaryrefslogtreecommitdiff
path: root/include/regchannel.h
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2023-12-17 13:59:49 +0000
committerSadie Powell <sadie@witchery.services>2023-12-17 13:59:49 +0000
commit6538641e8703084460df70d04196ac271eff1266 (patch)
tree2bf8ab8fdd0fb4839d86607826bc09c3366e3870 /include/regchannel.h
parenteb0e5c89b2a1e59091001ffd0e54582c2ff04212 (diff)
Remove some unnecessary spaces that break editor indentation.
Diffstat (limited to 'include/regchannel.h')
-rw-r--r--include/regchannel.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/regchannel.h b/include/regchannel.h
index ef49d0913..74dcd2e65 100644
--- a/include/regchannel.h
+++ b/include/regchannel.h
@@ -23,7 +23,7 @@ extern CoreExport Serialize::Checker<registered_channel_map> RegisteredChannelLi
/* AutoKick data. */
class CoreExport AutoKick : public Serializable
{
- public:
+public:
/* Channel this autokick is on */
Serialize::Reference<ChannelInfo> ci;
@@ -47,14 +47,14 @@ class CoreExport ChannelInfo : public Serializable, public Extensible
{
/* channels who reference this one */
Anope::map<int> references;
- private:
+private:
Serialize::Reference<NickCore> founder; /* Channel founder */
Serialize::Reference<NickCore> successor; /* Who gets the channel if the founder nick is dropped or expires */
Serialize::Checker<std::vector<ChanAccess *> > access; /* List of authorized users */
Serialize::Checker<std::vector<AutoKick *> > akick; /* List of users to kickban */
Anope::map<int16_t> levels;
- public:
+public:
friend class ChanAccess;
friend class AutoKick;