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:
Alexey Sokolov
2015-12-06 23:58:03 +00:00
parent 3861b6a583
commit d185d6f22d
131 changed files with 36734 additions and 36735 deletions
+6 -6
View File
@@ -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")