Skip to content
Snippets Groups Projects
Commit 529e1f69 authored by Jeremie Deray's avatar Jeremie Deray
Browse files

missing wolf namespace in registration macros

parent d12251cb
No related branches found
No related tags found
1 merge request!127Add ProcessorMotion::processIncomingCapture & Miscellaneous
......@@ -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 */
......
......@@ -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 */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment