25-05-2012, 02:18 PM
Good point. Consider, however, the following:
Does this code violate the rule?
Code:
typedef void (*pt2Function)(int stuff);
pt2Function a;
void b(int non_stuff)
{}
void c()
{
a = b;
}