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
Commits
529e1f69
Commit
529e1f69
authored
7 years ago
by
Jeremie Deray
Browse files
Options
Downloads
Patches
Plain Diff
missing wolf namespace in registration macros
parent
d12251cb
No related branches found
No related tags found
1 merge request
!127
Add ProcessorMotion::processIncomingCapture & Miscellaneous
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/factory.h
+1
-1
1 addition, 1 deletion
src/factory.h
src/sensor_factory.h
+1
-1
1 addition, 1 deletion
src/sensor_factory.h
with
2 additions
and
2 deletions
src/factory.h
+
1
−
1
View file @
529e1f69
...
...
@@ -374,7 +374,7 @@ inline std::string FrameFactory::getClass()
#define WOLF_REGISTER_FRAME(FrameType, FrameName) \
namespace{ const bool WOLF_UNUSED FrameName##Registered = \
FrameFactory::get().registerCreator(FrameType, FrameName::create); }\
wolf::
FrameFactory::get().registerCreator(FrameType, FrameName::create); }\
}
/* namespace wolf */
...
...
This diff is collapsed.
Click to expand it.
src/sensor_factory.h
+
1
−
1
View file @
529e1f69
...
...
@@ -220,7 +220,7 @@ inline std::string SensorFactory::getClass()
#define WOLF_REGISTER_SENSOR(SensorType, SensorName) \
namespace{ const bool WOLF_UNUSED SensorName##Registered = \
SensorFactory::get().registerCreator(SensorType, SensorName::create); }\
wolf::
SensorFactory::get().registerCreator(SensorType, SensorName::create); }\
}
/* namespace wolf */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment