- fixed type truncation warning.

This commit is contained in:
Christoph Oelckers 2016-02-28 21:16:16 +01:00
parent 27ac207f4c
commit 8be690fbf2

View file

@ -3518,7 +3518,7 @@ FxFlopFunctionCall::FxFlopFunctionCall(size_t index, FArgumentList *args, const
: FxExpression(pos)
{
assert(index < countof(FxFlops) && "FLOP index out of range");
Index = index;
Index = (int)index;
ArgList = args;
}