Community
Participate
Working Groups
Build Identifier: M20100211-1343 include file contains this: namespace vm { void my_classless_function (void); class some_class { static void my_class_function (void); } }; cpp file contains this: using namespace vm; void some_function (void) { some_class::my_class_function(); my_classless_function(); // generates "undefined reference to vm::my_classless_function()" error } Reproducible: Always
linking to static library
Do you get the error as the result of compilation (i.e. in build console)?
Yes
It's compiler complaining about an error in your code. It has nothing to do with CDT.