aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/customtoolchain.cpp
diff options
context:
space:
mode:
authorMarco Bubke <marco.bubke@theqtcompany.com>2016-01-18 11:56:54 +0100
committerMarco Bubke <marco.bubke@theqtcompany.com>2016-02-01 13:13:32 +0000
commite42bf6ebc637e9ef4ec95787374c9743eb80d8d4 (patch)
tree187a3ca4fae6e19b4c922786dcd7787883193f8f /src/plugins/projectexplorer/customtoolchain.cpp
parent77b4b4791531ef6b357c30cbeb998833e5852a58 (diff)
CppTools: Remove all references to the tool chain in the project part
Change-Id: I5fd55eadf94c8a185c2082b93b27bf4432e5cabf Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com> Reviewed-by: Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
Diffstat (limited to 'src/plugins/projectexplorer/customtoolchain.cpp')
-rw-r--r--src/plugins/projectexplorer/customtoolchain.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/customtoolchain.cpp b/src/plugins/projectexplorer/customtoolchain.cpp
index 2380d0f587..fd88e3a6ac 100644
--- a/src/plugins/projectexplorer/customtoolchain.cpp
+++ b/src/plugins/projectexplorer/customtoolchain.cpp
@@ -151,10 +151,10 @@ ToolChain::CompilerFlags CustomToolChain::compilerFlags(const QStringList &cxxfl
return NoFlags;
}
-ToolChain::WarningFlags CustomToolChain::warningFlags(const QStringList &cxxflags) const
+WarningFlags CustomToolChain::warningFlags(const QStringList &cxxflags) const
{
Q_UNUSED(cxxflags);
- return WarningFlags(WarningsDefault);
+ return WarningFlags::Default;
}
const QStringList &CustomToolChain::rawPredefinedMacros() const