mirror of
https://github.com/znc/znc.git
synced 2026-05-09 06:44:40 +02:00
Fix a bunch of style suggestions from cppcheck[1]
Thanks to DarthGandalf for this patch. You must be bored. :P [1] cppcheck.sf.net git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1776 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
+2
-2
@@ -43,7 +43,7 @@ int CBuffer::AddLine(const CString& sPre, const CString& sPost, bool bIncNick) {
|
||||
}
|
||||
|
||||
int CBuffer::UpdateLine(const CString& sPre, const CString& sPost, bool bIncNick) {
|
||||
for (iterator it = begin(); it != end(); it++) {
|
||||
for (iterator it = begin(); it != end(); ++it) {
|
||||
if (it->GetPre() == sPre) {
|
||||
it->SetPost(sPost);
|
||||
it->SetIncNick(bIncNick);
|
||||
@@ -55,7 +55,7 @@ int CBuffer::UpdateLine(const CString& sPre, const CString& sPost, bool bIncNick
|
||||
}
|
||||
|
||||
int CBuffer::UpdateExactLine(const CString& sPre, const CString& sPost, bool bIncNick) {
|
||||
for (iterator it = begin(); it != end(); it++) {
|
||||
for (iterator it = begin(); it != end(); ++it) {
|
||||
if (it->GetPre() == sPre && it->GetPost() == sPost)
|
||||
return size();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user