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/lists.h | |
parent | eb0e5c89b2a1e59091001ffd0e54582c2ff04212 (diff) |
Remove some unnecessary spaces that break editor indentation.
Diffstat (limited to 'include/lists.h')
-rw-r--r-- | include/lists.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/lists.h b/include/lists.h index 6e134d7ca..759706f1d 100644 --- a/include/lists.h +++ b/include/lists.h @@ -23,13 +23,13 @@ */ class CoreExport NumberList { - private: +private: bool is_valid = true; std::set<unsigned> numbers; bool desc; - public: +public: /** Processes a numbered list * @param list The list * @param descending True to make HandleNumber get called with numbers in descending order @@ -62,13 +62,13 @@ class CoreExport NumberList */ class CoreExport ListFormatter { - public: +public: typedef std::map<Anope::string, Anope::string> ListEntry; - private: +private: NickCore *nc; std::vector<Anope::string> columns; std::vector<ListEntry> entries; - public: +public: ListFormatter(NickCore *nc); ListFormatter &AddColumn(const Anope::string &name); void AddEntry(const ListEntry &entry); @@ -83,7 +83,7 @@ class CoreExport InfoFormatter NickCore *nc; std::vector<std::pair<Anope::string, Anope::string> > replies; unsigned longest = 0; - public: +public: InfoFormatter(NickCore *nc); void Process(std::vector<Anope::string> &); Anope::string &operator[](const Anope::string &key); |