summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer
diff options
context:
space:
mode:
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>2022-10-31 09:13:54 +0200
committerOrgad Shaneh <orgads@gmail.com>2022-10-31 13:46:04 +0000
commit3533392d95e648810e1670efeaba620b2e8a102c (patch)
tree7fd501a9ce77713f8a0b2029ab7d73d5fd79eab2 /src/plugins/projectexplorer
parentce89ee59c533c51daf50dc347e39cb890ccdd463 (diff)
downloadqt-creator-3533392d95e648810e1670efeaba620b2e8a102c.tar.gz
ProjectExplorer: Remove redundant return in CustomToolChain
Amends c15e09e0fe880c58ad39d5d8d0a1baeb84fc7e3b. Change-Id: Ic1aabcada892413f454c3800c925aa7527a09965 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer')
-rw-r--r--src/plugins/projectexplorer/customtoolchain.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/customtoolchain.cpp b/src/plugins/projectexplorer/customtoolchain.cpp
index 4c2904d3cd..8b072f85eb 100644
--- a/src/plugins/projectexplorer/customtoolchain.cpp
+++ b/src/plugins/projectexplorer/customtoolchain.cpp
@@ -157,7 +157,6 @@ QList<Utils::OutputLineParser *> CustomToolChain::createOutputParsers() const
if (m_outputParserId == MsvcParser::id())
return {new MsvcParser};
return {new Internal::CustomParser(customParserSettings())};
- return {};
}
QStringList CustomToolChain::headerPathsList() const