PORTING.CAST.FLTPNTCast between floating point and non-floating point typesThe PORTING checkers identify code that might rely on specific implementation details in different compilers. The PORTING.CAST.FLTPNT checker detects a cast between types that aren't both floating point or non-floating point. Vulnerability and riskCasting of a floating point expression to a non-floating point data type may be a safe operation on certain platforms, but it can't be guaranteed to be successful on all compiler implementations. This checker warns you of expressions that explicitly or implicitly cast a floating point value to a non-floating point value in case you need to take action. Related checkers |