Skip to content
Snippets Groups Projects
Commit 763c693a authored by Jeremie Deray's avatar Jeremie Deray Committed by Jeremie Deray
Browse files

processor_factory registration missing namespace

parent dc6bd56b
No related branches found
No related tags found
1 merge request!126Miscellaneous
......@@ -178,7 +178,7 @@ inline std::string ProcessorFactory::getClass()
#define WOLF_REGISTER_PROCESSOR(ProcessorType, ProcessorName) \
namespace{ const bool ProcessorName##Registered = \
ProcessorFactory::get().registerCreator(ProcessorType, ProcessorName::create); }\
wolf::ProcessorFactory::get().registerCreator(ProcessorType, ProcessorName::create); }\
  • I removed this, not necessary since we are in namespace wolf:: anready

  • Developer

    @jsola actually I think it is necessary if one want to use this macro outside wolf namespace.
    I will double-check tomorrow.

  • Please register or sign in to reply
} /* 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