Remove uneeded indentation

This commit is contained in:
Raphael Geissert 2011-02-02 09:54:04 -06:00
parent 8d5863133c
commit 15dceed6cd
1 changed files with 35 additions and 35 deletions

View File

@ -335,8 +335,9 @@ void CppCheck::checkFile(const std::string &code, const char FileName[])
reportErr(errmsg); reportErr(errmsg);
} }
if (re) if (!re)
{ continue;
int pos = 0; int pos = 0;
int ovector[30]; int ovector[30];
if (0 <= pcre_exec(re, NULL, str.c_str(), (int)str.size(), pos, 0, ovector, 30)) if (0 <= pcre_exec(re, NULL, str.c_str(), (int)str.size(), pos, 0, ovector, 30))
@ -378,7 +379,6 @@ void CppCheck::checkFile(const std::string &code, const char FileName[])
pcre_free(re); pcre_free(re);
} }
} }
}
#endif #endif
} }