Remove unnecessary virtual keyword occurrences

This makes it convenient to 'grep virtual' and 'grep override' :)
This commit is contained in:
J-P Nurmi
2015-02-25 18:33:09 +01:00
parent ef9939e1ec
commit 6002bd5c2b
65 changed files with 515 additions and 515 deletions
+2 -2
View File
@@ -37,7 +37,7 @@ public:
return false;
}
virtual EModRet OnUserRaw(CString& sLine) override {
EModRet OnUserRaw(CString& sLine) override {
//Handle ISON
if (sLine.Token(0).Equals("ison")) {
VCString vsNicks;
@@ -83,7 +83,7 @@ public:
return CONTINUE;
}
virtual EModRet OnRaw(CString& sLine) override {
EModRet OnRaw(CString& sLine) override {
//Handle 303 reply if m_Requests is not empty
if (sLine.Token(1) == "303" && !m_ISONRequests.empty()) {
VCString::iterator it = m_ISONRequests.begin();