qualifier applied to reference type ignored
This warning is generated when a qualifier (such as const) is applied to a reference type defined by typedef. For example:
typedef int &RefInt; int I; const RefInt cri=i; //generates warning C4181