mirror of
https://github.com/znc/znc.git
synced 2026-08-07 09:22:55 +02:00
clang-format: switch tabs to spaces
I like tabs, but I have to admit that spaces make source code more consistent, because every editor/viewer tends to render tabs differently :(
This commit is contained in:
@@ -18,17 +18,17 @@
|
||||
|
||||
class CMissingMotd : public CModule {
|
||||
public:
|
||||
MODCONSTRUCTOR(CMissingMotd) {}
|
||||
MODCONSTRUCTOR(CMissingMotd) {}
|
||||
|
||||
void OnClientLogin() override {
|
||||
PutUser(":irc.znc.in 422 :MOTD File is missing");
|
||||
}
|
||||
void OnClientLogin() override {
|
||||
PutUser(":irc.znc.in 422 :MOTD File is missing");
|
||||
}
|
||||
};
|
||||
|
||||
template <>
|
||||
void TModInfo<CMissingMotd>(CModInfo& Info) {
|
||||
Info.SetWikiPage("missingmotd");
|
||||
Info.SetHasArgs(false);
|
||||
Info.SetWikiPage("missingmotd");
|
||||
Info.SetHasArgs(false);
|
||||
}
|
||||
|
||||
USERMODULEDEFS(CMissingMotd, "Sends 422 to clients when they login")
|
||||
|
||||
Reference in New Issue
Block a user