summaryrefslogtreecommitdiff
path: root/src/plugins/cpptools/projectinfo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/cpptools/projectinfo.cpp')
-rw-r--r--src/plugins/cpptools/projectinfo.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/plugins/cpptools/projectinfo.cpp b/src/plugins/cpptools/projectinfo.cpp
index cb1cf04ba9..34ae92aa60 100644
--- a/src/plugins/cpptools/projectinfo.cpp
+++ b/src/plugins/cpptools/projectinfo.cpp
@@ -91,28 +91,10 @@ const QSet<QString> ProjectInfo::sourceFiles() const
return m_sourceFiles;
}
-void ProjectInfo::setCompilerCallData(const CompilerCallData &data)
-{
- m_compilerCallData = data;
-}
-
-ProjectInfo::CompilerCallData ProjectInfo::compilerCallData() const
-{
- return m_compilerCallData;
-}
-
-static bool operator==(const ProjectInfo::CompilerCallGroup &first,
- const ProjectInfo::CompilerCallGroup &second)
-{
- return first.groupId == second.groupId
- && first.callsPerSourceFile == second.callsPerSourceFile;
-}
-
bool ProjectInfo::operator ==(const ProjectInfo &other) const
{
return m_project == other.m_project
&& m_projectParts == other.m_projectParts
- && m_compilerCallData == other.m_compilerCallData
&& m_headerPaths == other.m_headerPaths
&& m_sourceFiles == other.m_sourceFiles
&& m_defines == other.m_defines;