Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
wolf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mobile_robotics
wolf_projects
wolf_lib
wolf
Merge requests
!124
fix gcc 5+ compilation -Werror=unused-variable
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix gcc 5+ compilation -Werror=unused-variable
wolf_unused
into
master
Overview
6
Commits
1
Pipelines
0
Changes
13
Merged
Jeremie Deray
requested to merge
wolf_unused
into
master
7 years ago
Overview
6
Commits
1
Pipelines
0
Changes
13
Expand
@jsola
can you please compile on your laptop (clang) ?
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
37f7f76d
1 commit,
7 years ago
13 files
+
34
−
16
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
13
Search (e.g. *.vue) (Ctrl+P)
src/yaml/processor_image_yaml.cpp
+
2
−
2
Options
@@ -84,8 +84,8 @@ static ProcessorParamsBasePtr createProcessorParamsImage(const std::string & _fi
}
// Register in the SensorFactory
const
bool
registered_prc_image_feature_par
=
ProcessorParamsFactory
::
get
().
registerCreator
(
"IMAGE FEATURE"
,
createProcessorParamsImage
);
const
bool
registered_prc_image_landmark_par
=
ProcessorParamsFactory
::
get
().
registerCreator
(
"IMAGE LANDMARK"
,
createProcessorParamsImage
);
const
bool
WOLF_UNUSED
registered_prc_image_feature_par
=
ProcessorParamsFactory
::
get
().
registerCreator
(
"IMAGE FEATURE"
,
createProcessorParamsImage
);
const
bool
WOLF_UNUSED
registered_prc_image_landmark_par
=
ProcessorParamsFactory
::
get
().
registerCreator
(
"IMAGE LANDMARK"
,
createProcessorParamsImage
);
}
Loading