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