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

conversion between different floating-point types

Information was lost or truncated during conversion.

Example

double doublevar;
float floatvar;
floatvar = doublevar;
floatvar = 1.0;  // Warning
                 // Unsuffixed floating-point constant has type double
floatvar = 1.0F; // Suffix prevents warning