Fixed compile warnings in llmath/llrect.h. This header is now included in a unit test

in indra/test where warnings are treated as errors.
master
Martin Reddy 2009-07-15 18:10:00 +00:00
parent 28c9537398
commit 5354caa136
1 changed files with 4 additions and 4 deletions

View File

@ -71,10 +71,10 @@ public:
void setValue(const LLSD& sd)
{
mLeft = sd[0].asInteger();
mTop = sd[1].asInteger();
mRight = sd[2].asInteger();
mBottom = sd[3].asInteger();
mLeft = (Type)sd[0].asInteger();
mTop = (Type)sd[1].asInteger();
mRight = (Type)sd[2].asInteger();
mBottom = (Type)sd[3].asInteger();
}
LLSD getValue() const