Xcode error "fixup value out of range"

Does anyone know what generates this error and secondly how to get rid of it? The module that generates the error has nine large (2000 element) arrays of type Double. But the values of the elements in the array are reasonable for doubles: -6000..+6000 TIA ClarkW

  • I tried reproducing the above in playgrounds and no issue: let array: Array<Double> = Array(repeating: -10000, count: 9*2000)

Add a Comment