Compiler Warning (level 1) C4180 (Windows CE 5.0)

Send Feedback

qualifier applied to function type has no meaning

A qualifier, such as const, is applied to a function type defined by typedef.

The following example shows how this error might occur.

typedef int *FuncType(void);

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

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.