parent
a0a2eae1d2
commit
e78775fac3
|
@ -174,8 +174,7 @@ bool CppCheckExecutor::parseFromArgs(CppCheck *cppcheck, int argc, const char* c
|
||||||
std::cout << "cppcheck: error: could not find any files matching the filter." << std::endl;
|
std::cout << "cppcheck: error: could not find any files matching the filter." << std::endl;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
} else if (!pathnames.empty()) {
|
||||||
else if (!pathnames.empty()) {
|
|
||||||
// Execute recursiveAddFiles() to each given file parameter
|
// Execute recursiveAddFiles() to each given file parameter
|
||||||
const PathMatch matcher(ignored, caseSensitive);
|
const PathMatch matcher(ignored, caseSensitive);
|
||||||
for (const std::string &pathname : pathnames)
|
for (const std::string &pathname : pathnames)
|
||||||
|
@ -187,8 +186,7 @@ bool CppCheckExecutor::parseFromArgs(CppCheck *cppcheck, int argc, const char* c
|
||||||
if (!ignored.empty())
|
if (!ignored.empty())
|
||||||
std::cout << "cppcheck: Maybe all paths were ignored?" << std::endl;
|
std::cout << "cppcheck: Maybe all paths were ignored?" << std::endl;
|
||||||
return false;
|
return false;
|
||||||
}
|
} else if (!mSettings->fileFilter.empty()) {
|
||||||
else if(!mSettings->fileFilter.empty()) {
|
|
||||||
std::map<std::string, std::size_t> newMap;
|
std::map<std::string, std::size_t> newMap;
|
||||||
for (std::map<std::string, std::size_t>::const_iterator i = mFiles.begin(); i != mFiles.end(); ++i)
|
for (std::map<std::string, std::size_t>::const_iterator i = mFiles.begin(); i != mFiles.end(); ++i)
|
||||||
if (Suppressions::matchglob(mSettings->fileFilter, i->first)) {
|
if (Suppressions::matchglob(mSettings->fileFilter, i->first)) {
|
||||||
|
|
Loading…
Reference in New Issue