Skip to content

Commit 9ce5ad7

Browse files
comment out unused variables of overloaded methods
1 parent c850efe commit 9ce5ad7

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/project_manager/ros_build_system.cpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,39 +20,39 @@ void ROSBuildSystem::triggerParsing()
2020
guardParsingRun().markAsSuccess();
2121
}
2222

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*/)
2424
{
2525
// update entire workspace project
2626
dynamic_cast<ROSProject *>(context->getProject())->refresh();
2727
return true;
2828
}
2929

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*/)
3131
{
3232
return ProjectExplorer::RemovedFilesFromProject::Ok;
3333
}
3434

35-
bool ROSBuildSystem::deleteFiles(ProjectExplorer::Node *context, const Utils::FilePaths &filePaths)
35+
bool ROSBuildSystem::deleteFiles(ProjectExplorer::Node */*context*/, const Utils::FilePaths &/*filePaths*/)
3636
{
3737
return true;
3838
}
3939

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*/)
4141
{
4242
return true;
4343
}
4444

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*/)
4646
{
4747
return true;
4848
}
4949

50-
bool ROSBuildSystem::addDependencies(ProjectExplorer::Node *context, const QStringList &dependencies)
50+
bool ROSBuildSystem::addDependencies(ProjectExplorer::Node */*context*/, const QStringList &/*dependencies*/)
5151
{
5252
return true;
5353
}
5454

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
5656
{
5757
static const std::set<ProjectAction> possible_actions = {
5858
ProjectAction::AddNewFile,

0 commit comments

Comments
 (0)