From 3533392d95e648810e1670efeaba620b2e8a102c Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Mon, 31 Oct 2022 09:13:54 +0200 Subject: [PATCH] ProjectExplorer: Remove redundant return in CustomToolChain Amends c15e09e0fe880c58ad39d5d8d0a1baeb84fc7e3b. Change-Id: Ic1aabcada892413f454c3800c925aa7527a09965 Reviewed-by: Christian Kandeler --- src/plugins/projectexplorer/customtoolchain.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/plugins/projectexplorer/customtoolchain.cpp b/src/plugins/projectexplorer/customtoolchain.cpp index 4c2904d3cd6..8b072f85eb2 100644 --- a/src/plugins/projectexplorer/customtoolchain.cpp +++ b/src/plugins/projectexplorer/customtoolchain.cpp @@ -157,7 +157,6 @@ QList CustomToolChain::createOutputParsers() const if (m_outputParserId == MsvcParser::id()) return {new MsvcParser}; return {new Internal::CustomParser(customParserSettings())}; - return {}; } QStringList CustomToolChain::headerPathsList() const