src: removed debug code from SourceGroupCxxCdb

This commit is contained in:
Eberhard Graether
2018-06-18 20:37:36 +02:00
parent c4901b6a7f
commit d5f0c62f56
+1 -3
View File
@@ -169,14 +169,12 @@ std::vector<std::shared_ptr<IndexerCommand>> SourceGroupCxxCdb::getIndexerComman
std::set<FilePathFilter>(),
FilePath(utility::decodeFromUtf8(command.Directory)),
utility::concat(
utility::convert<std::string, std::wstring>(command.CommandLine, [](const std::string& arg) { return utility::decodeFromUtf8(arg); }),
utility::convert<std::string, std::wstring>(command.CommandLine, [](const std::string& arg) { return utility::decodeFromUtf8(arg); }),
compilerFlags
),
systemHeaderSearchPaths,
frameworkSearchPaths
));
LOG_INFO(std::wstring(L"IndexerCommand: ") + IndexerCommandCxxCdb::serialize(indexerCommands.front()).c_str());
return indexerCommands;
}
}
}