Skip to content

problems with the MISC_NAMESPACE macro

  1. not defining it before including any individual misc/*.h file will result in a warning about undefined macros / variables
  2. setting it via #define MISC_NAMESPACE results in #define MISC which interestingly results in the following error message:
bla.cpp:(.text+0xa58): undefined reference to `(anonymous namespace)::get_call_stack()'

This might be the only way to reference an anonymous namespace...???