26.12.2011, 06:41
What's the definition for the arrays 'elegy' and 'elegies'? The warning is because either:
The array elegy could be a float tagged array, and you are trying to pass an untagged integer value to it, thus causing a warning.
or
elegies[i][1], elegies[i][2] and elegies[i][3] are untagged integers and you could be referencing to them as floats rather than untagged integers, thus creating a warning.
or
elegies[i][4] and elegies[i][5] are floats, and you could be referencing to them as untagged integers, thus creating a warning.
Either one could be sorted if you posted the region of code where you initialized these arrays to hold these values in.
The array elegy could be a float tagged array, and you are trying to pass an untagged integer value to it, thus causing a warning.
or
elegies[i][1], elegies[i][2] and elegies[i][3] are untagged integers and you could be referencing to them as floats rather than untagged integers, thus creating a warning.
or
elegies[i][4] and elegies[i][5] are floats, and you could be referencing to them as untagged integers, thus creating a warning.
Either one could be sorted if you posted the region of code where you initialized these arrays to hold these values in.