﻿# V2003\. Explicit conversion from 'float/double' type to signed integer type\.

This diagnostic rule was added at users' request\.

The analyzer allows you to detect all the explicit floating\-point type conversions to integer signed types\.

Consider some examples of constructs the analyzer will generate this diagnostic message on:

```cpp
float f;
double d;
long double ld;
int i;
short s;
...
i = int(f); // V2003
s = static_cast<short>(d); // V2003
i = (int)ld;  // V2003
```

V2004 is a related diagnostic message\.