Hi,
how do I get rid of this warning?
I use a standard method that returns an int64. I want to divide it by some other number and save the result as real (because a division can result in numbers behind the comma). Now I get this warning which I don't really understand.
int64 i = 123;
real j;
j = i / 5; //this line produces the warning
*This post is locked for comments
I have the same question (0)