Compiler Warning (level 3) C4136 (Windows CE 5.0)

Send Feedback

conversion between different floating-point types

Information was lost or truncated during conversion.

The following example shows how this error might occur.

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

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.