logic: implemented usage of FilePathFilters for excluded paths

* removed check in settings for existing paths of exclude filters
This commit is contained in:
mlangkabel
2018-03-12 08:51:38 +01:00
parent 31c9f9fecc
commit 6acfe0688f
44 changed files with 572 additions and 221 deletions
+2 -2
View File
@@ -3991,13 +3991,13 @@ public:
void test_cxx_parser_parses_multiple_files()
{
const std::set<FilePath> indexedPaths = { FilePath(L"data/CxxParserTestSuite/") };
const std::set<FilePath> excludedPaths;
const std::set<FilePathFilter> excludeFilters;
const FilePath workingDirectory(L".");
std::shared_ptr<IndexerCommandCxxEmpty> indexerCommand = std::make_shared<IndexerCommandCxxEmpty>(
FilePath(L"data/CxxParserTestSuite/code.cpp"),
indexedPaths,
excludedPaths,
excludeFilters,
workingDirectory,
"c++1z",
std::vector<FilePath>(),