From d5f0c62f56a3ca1a4522035076880494649fe794 Mon Sep 17 00:00:00 2001 From: Eberhard Graether Date: Mon, 18 Jun 2018 20:37:36 +0200 Subject: [PATCH] src: removed debug code from SourceGroupCxxCdb --- src/lib_cxx/project/SourceGroupCxxCdb.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/lib_cxx/project/SourceGroupCxxCdb.cpp b/src/lib_cxx/project/SourceGroupCxxCdb.cpp index 9bbcefd3..c232641d 100644 --- a/src/lib_cxx/project/SourceGroupCxxCdb.cpp +++ b/src/lib_cxx/project/SourceGroupCxxCdb.cpp @@ -169,14 +169,12 @@ std::vector> SourceGroupCxxCdb::getIndexerComman std::set(), FilePath(utility::decodeFromUtf8(command.Directory)), utility::concat( - utility::convert(command.CommandLine, [](const std::string& arg) { return utility::decodeFromUtf8(arg); }), + utility::convert(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; } } }