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) C4554

'operator' : possible operator precedence error; use parentheses to avoid ambiguity

Example

a = a << b + c;   // probably intended (a << b) + c, 
                  // but will get a << (b + c)