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

Send Feedback

qualifier applied to reference type ignored

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

The following example shows how this error might occur.

typedef int &RefInt;
int I;
const RefInt cri=i; //generates warning C4181

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.