40 | | * there is no consistent handling of type conversions. For example, different parts of FDO might handle overflows (value is not valid for the destination type) differently |
41 | | |
42 | | * code duplication. More expensive maintenance if the same fix has to be applied in multiple places (this can easily happen when the type conversion code is cloned to different places) |
43 | | |
44 | | * more difficult for developers to find the type conversion functions currently available, since these can be in various places |
| 40 | * there is no consistent handling of type conversions. For example, different parts of FDO might handle overflows (value is not valid for the destination type) differently |
| 41 | |
| 42 | * code duplication. More expensive maintenance if the same fix has to be applied in multiple places (this can easily happen when the type conversion code is cloned to different places) |
| 43 | |
| 44 | * more difficult for developers to find the type conversion functions currently available, since these can be in various places |