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 3) C4557

'__assume' contains effect 'effect'

The value passed to an __assume statement was modified. By default, this warning is off.

The following sample generates C4557:

// compile with /Wall
void main() {
   int i;
   __assume(i++);   // C4557
}