NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Warning (level 1) C4181

qualifier applied to reference type ignored

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

Example

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