Bug 637180 - Unused function IsFloatInteger; r=matt.woodrow

This commit is contained in:
Ms2ger 2011-02-27 11:00:00 -05:00
Родитель e1d6d4211e
Коммит edc8a9bff7
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -205,10 +205,12 @@ nsRect& nsRect::ScaleRoundOut(float aXScale, float aYScale)
return *this;
}
#ifdef DEBUG
static bool IsFloatInteger(float aFloat)
{
return fabs(aFloat - NS_round(aFloat)) < 1e-6;
}
#endif
nsRect& nsRect::ExtendForScaling(float aXMult, float aYMult)
{