Greetings,
When I do a build, I am getting the following compiler error:
error #340: more than one instance of overloaded function "<function_name>" has "C" linkage
I have double checked, and there is only one function with that name. And if I comment out that function, the error changes to the expected link error with that function listed as the unresolved symbol. The function is declared as:
extern "C" bool function_name(void)
{
some code;
}
So I'm mystified as to what would be causing the error.
Thank you,
Ed