Compiler Warning (level 1) C4180

qualifier applied to function type has no meaning

This warning is generated when a qualifier (such as const) is applied to a function type defined by typedef. For example:

typedef int *FuncType(void);

//the const qualifier cannot be applied to the
//function type FuncType, generates warning:
const FuncType f;