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/account.h | |
parent | eb0e5c89b2a1e59091001ffd0e54582c2ff04212 (diff) |
Remove some unnecessary spaces that break editor indentation.
Diffstat (limited to 'include/account.h')
-rw-r--r-- | include/account.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/account.h b/include/account.h index d48b25872..08761e7cc 100644 --- a/include/account.h +++ b/include/account.h @@ -33,7 +33,7 @@ class CoreExport NickAlias : public Serializable, public Extensible Anope::string vhost_ident, vhost_host, vhost_creator; time_t vhost_created; - public: +public: Anope::string nick; Anope::string last_quit; Anope::string last_realname; @@ -110,7 +110,7 @@ class CoreExport NickCore : public Serializable, public Extensible Serialize::Checker<std::map<ChannelInfo *, int> > chanaccess; /* Unique identifier for the account. */ uint64_t id; - public: +public: /* Name of the account. Find(display)->nc == this. */ Anope::string display; /* User password in form of hashm:data */ @@ -244,11 +244,11 @@ class CoreExport IdentifyRequest static std::set<IdentifyRequest *> Requests; - protected: +protected: IdentifyRequest(Module *o, const Anope::string &acc, const Anope::string &pass); virtual ~IdentifyRequest(); - public: +public: /* One of these is called when the request goes through */ virtual void OnSuccess() = 0; virtual void OnFail() = 0; |