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
+13 -13
View File
@@ -18,26 +18,26 @@
class CRawMod : public CModule {
public:
MODCONSTRUCTOR(CRawMod) {}
virtual ~CRawMod() {}
MODCONSTRUCTOR(CRawMod) {}
virtual ~CRawMod() {}
EModRet OnRaw(CString& sLine) override {
PutModule("IRC -> [" + sLine + "]");
return CONTINUE;
}
EModRet OnRaw(CString& sLine) override {
PutModule("IRC -> [" + sLine + "]");
return CONTINUE;
}
void OnModCommand(const CString& sCommand) override { PutIRC(sCommand); }
void OnModCommand(const CString& sCommand) override { PutIRC(sCommand); }
EModRet OnUserRaw(CString& sLine) override {
PutModule("YOU -> [" + sLine + "]");
return CONTINUE;
}
EModRet OnUserRaw(CString& sLine) override {
PutModule("YOU -> [" + sLine + "]");
return CONTINUE;
}
};
template <>
void TModInfo<CRawMod>(CModInfo& Info) {
Info.SetWikiPage("raw");
Info.AddType(CModInfo::UserModule);
Info.SetWikiPage("raw");
Info.AddType(CModInfo::UserModule);
}
NETWORKMODULEDEFS(CRawMod, "View all of the raw traffic")