diff options
author | Sadie Powell <sadie@witchery.services> | 2023-12-17 13:59:49 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2023-12-17 13:59:49 +0000 |
commit | 6538641e8703084460df70d04196ac271eff1266 (patch) | |
tree | 2bf8ab8fdd0fb4839d86607826bc09c3366e3870 /include/regchannel.h | |
parent | eb0e5c89b2a1e59091001ffd0e54582c2ff04212 (diff) |
Remove some unnecessary spaces that break editor indentation.
Diffstat (limited to 'include/regchannel.h')
-rw-r--r-- | include/regchannel.h | 6 |
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; |