Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
qualifier applied to function type has no meaning; ignored
Remarks
A qualifier, such as const, is applied to a function type defined by typedef.
Example
The following example generates C4180:
// C4180.cpp
// compile with: /W1 /c
typedef int FuncType(void);
// the const qualifier cannot be applied to the
// function type FuncType
const FuncType f; // C4180