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 4) C4213

nonstandard extension used : cast on l-value

With the default Microsoft extensions (/Ze), you can use casts on the left side of an assignment statement.

Example

void *a;
void f()
{
   int   i[3];
   a = &i;
   *(( int * )a )++ = 3;  // warning
}

Such casts are illegal under ANSI compatibility (/Za).