CompilationDatabase: Remove unnneded ::fromMap() reimplementaion

Change-Id: I2e9440f146b8ba485d3080e74927a05ae7d68824
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
hjk
2019-12-10 17:21:13 +01:00
parent 27a5d50125
commit 668f1b667a
2 changed files with 0 additions and 8 deletions

View File

@@ -459,13 +459,6 @@ Utils::FilePath CompilationDatabaseProject::rootPathFromSettings() const
#endif
}
Project::RestoreResult CompilationDatabaseProject::fromMap(const QVariantMap &map,
QString *errorMessage)
{
Project::RestoreResult result = Project::fromMap(map, errorMessage);
return result;
}
void CompilationDatabaseBuildSystem::reparseProject()
{
if (m_parser) {

View File

@@ -62,7 +62,6 @@ public:
ProjectExplorer::Kit *kit() const { return m_kit.get(); }
private:
RestoreResult fromMap(const QVariantMap &map, QString *errorMessage) override;
std::unique_ptr<ProjectExplorer::Kit> m_kit;
};