@@ -20,39 +20,39 @@ void ROSBuildSystem::triggerParsing()
20
20
guardParsingRun ().markAsSuccess ();
21
21
}
22
22
23
- bool ROSBuildSystem::addFiles (ProjectExplorer::Node *context, const Utils::FilePaths &filePaths, Utils::FilePaths *notAdded)
23
+ bool ROSBuildSystem::addFiles (ProjectExplorer::Node *context, const Utils::FilePaths &/* filePaths*/ , Utils::FilePaths */* notAdded*/ )
24
24
{
25
25
// update entire workspace project
26
26
dynamic_cast <ROSProject *>(context->getProject ())->refresh ();
27
27
return true ;
28
28
}
29
29
30
- ProjectExplorer::RemovedFilesFromProject ROSBuildSystem::removeFiles (ProjectExplorer::Node *context, const Utils::FilePaths &filePaths, Utils::FilePaths *notRemoved)
30
+ ProjectExplorer::RemovedFilesFromProject ROSBuildSystem::removeFiles (ProjectExplorer::Node */* context*/ , const Utils::FilePaths &/* filePaths*/ , Utils::FilePaths */* notRemoved*/ )
31
31
{
32
32
return ProjectExplorer::RemovedFilesFromProject::Ok;
33
33
}
34
34
35
- bool ROSBuildSystem::deleteFiles (ProjectExplorer::Node *context, const Utils::FilePaths &filePaths)
35
+ bool ROSBuildSystem::deleteFiles (ProjectExplorer::Node */* context*/ , const Utils::FilePaths &/* filePaths*/ )
36
36
{
37
37
return true ;
38
38
}
39
39
40
- bool ROSBuildSystem::canRenameFile (ProjectExplorer::Node *context, const Utils::FilePath &oldFilePath, const Utils::FilePath &newFilePath)
40
+ bool ROSBuildSystem::canRenameFile (ProjectExplorer::Node */* context*/ , const Utils::FilePath &/* oldFilePath*/ , const Utils::FilePath &/* newFilePath*/ )
41
41
{
42
42
return true ;
43
43
}
44
44
45
- bool ROSBuildSystem::renameFile (ProjectExplorer::Node *context, const Utils::FilePath &oldFilePath, const Utils::FilePath &newFilePath)
45
+ bool ROSBuildSystem::renameFile (ProjectExplorer::Node */* context*/ , const Utils::FilePath &/* oldFilePath*/ , const Utils::FilePath &/* newFilePath*/ )
46
46
{
47
47
return true ;
48
48
}
49
49
50
- bool ROSBuildSystem::addDependencies (ProjectExplorer::Node *context, const QStringList &dependencies)
50
+ bool ROSBuildSystem::addDependencies (ProjectExplorer::Node */* context*/ , const QStringList &/* dependencies*/ )
51
51
{
52
52
return true ;
53
53
}
54
54
55
- bool ROSBuildSystem::supportsAction (ProjectExplorer::Node *context, ProjectExplorer::ProjectAction action, const ProjectExplorer::Node *node) const
55
+ bool ROSBuildSystem::supportsAction (ProjectExplorer::Node */* context*/ , ProjectExplorer::ProjectAction action, const ProjectExplorer::Node */* node*/ ) const
56
56
{
57
57
static const std::set<ProjectAction> possible_actions = {
58
58
ProjectAction::AddNewFile,
0 commit comments