aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/customtoolchain.cpp
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@theqtcompany.com>2015-07-09 11:30:01 +0200
committerTobias Hunger <tobias.hunger@theqtcompany.com>2015-07-09 12:34:08 +0000
commita75b97e702f83f6502a06a497504b3909c0bf41b (patch)
tree6ae4301838efc859bd825387a59d4600f2f6fb61 /src/plugins/projectexplorer/customtoolchain.cpp
parent8beeb6c8701ed57bfedf7198cb7e16776b03dc2c (diff)
CustomToolChain: use default copy constructor and remove unused constructor
This copies over the parser, c++11 flags, etc. that were missed in the existing implementation. Change-Id: Icbff37b943bb02bf71cdeb1cf01245d9f6e62688 Reviewed-by: Daniel Teske <daniel.teske@theqtcompany.com>
Diffstat (limited to 'src/plugins/projectexplorer/customtoolchain.cpp')
-rw-r--r--src/plugins/projectexplorer/customtoolchain.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/plugins/projectexplorer/customtoolchain.cpp b/src/plugins/projectexplorer/customtoolchain.cpp
index 52b59eaaeb..dd445dbdd9 100644
--- a/src/plugins/projectexplorer/customtoolchain.cpp
+++ b/src/plugins/projectexplorer/customtoolchain.cpp
@@ -82,19 +82,6 @@ CustomToolChain::CustomToolChain(Detection d) :
m_outputParser(Gcc)
{ }
-CustomToolChain::CustomToolChain(const QByteArray &id, Detection d) :
- ToolChain(id, d)
-{ }
-
-CustomToolChain::CustomToolChain(const CustomToolChain &tc) :
- ToolChain(tc),
- m_compilerCommand(tc.m_compilerCommand),
- m_makeCommand(tc.m_makeCommand),
- m_targetAbi(tc.m_targetAbi),
- m_predefinedMacros(tc.m_predefinedMacros),
- m_systemHeaderPaths(tc.m_systemHeaderPaths)
-{ }
-
QString CustomToolChain::type() const
{
return QLatin1String("custom");