No longer include llerrorlegacy.h. Updated llstl to include deletion utilites.
This commit is contained in:
@@ -534,7 +534,7 @@ void LLPrimitive::setPosition(const F32 x, const F32 y, const F32 z)
|
||||
}
|
||||
else
|
||||
{
|
||||
llerrs << "Non Finite in LLPrimitive::setPosition(x,y,z) for " << pCodeToString(mPrimitiveCode) << llendl;
|
||||
LL_ERRS() << "Non Finite in LLPrimitive::setPosition(x,y,z) for " << pCodeToString(mPrimitiveCode) << LL_ENDL;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -547,7 +547,7 @@ void LLPrimitive::setPosition(const LLVector3& pos)
|
||||
}
|
||||
else
|
||||
{
|
||||
llerrs << "Non Finite in LLPrimitive::setPosition(LLVector3) for " << pCodeToString(mPrimitiveCode) << llendl;
|
||||
LL_ERRS() << "Non Finite in LLPrimitive::setPosition(LLVector3) for " << pCodeToString(mPrimitiveCode) << LL_ENDL;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -559,7 +559,7 @@ void LLPrimitive::setAngularVelocity(const LLVector3& avel)
|
||||
}
|
||||
else
|
||||
{
|
||||
llerror("Non Finite in LLPrimitive::setAngularVelocity", 0);
|
||||
LL_ERRS() << "Non Finite in LLPrimitive::setAngularVelocity" << LL_ENDL;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -571,7 +571,7 @@ void LLPrimitive::setAngularVelocity(const F32 x, const F32 y, const F32 z)
|
||||
}
|
||||
else
|
||||
{
|
||||
llerror("Non Finite in LLPrimitive::setAngularVelocity", 0);
|
||||
LL_ERRS() << "Non Finite in LLPrimitive::setAngularVelocity" << LL_ENDL;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -583,7 +583,7 @@ void LLPrimitive::setVelocity(const LLVector3& vel)
|
||||
}
|
||||
else
|
||||
{
|
||||
llerrs << "Non Finite in LLPrimitive::setVelocity(LLVector3) for " << pCodeToString(mPrimitiveCode) << llendl;
|
||||
LL_ERRS() << "Non Finite in LLPrimitive::setVelocity(LLVector3) for " << pCodeToString(mPrimitiveCode) << LL_ENDL;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -595,7 +595,7 @@ void LLPrimitive::setVelocity(const F32 x, const F32 y, const F32 z)
|
||||
}
|
||||
else
|
||||
{
|
||||
llerrs << "Non Finite in LLPrimitive::setVelocity(F32,F32,F32) for " << pCodeToString(mPrimitiveCode) << llendl;
|
||||
LL_ERRS() << "Non Finite in LLPrimitive::setVelocity(F32,F32,F32) for " << pCodeToString(mPrimitiveCode) << LL_ENDL;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -607,7 +607,7 @@ void LLPrimitive::setVelocityX(const F32 x)
|
||||
}
|
||||
else
|
||||
{
|
||||
llerror("Non Finite in LLPrimitive::setVelocityX", 0);
|
||||
LL_ERRS() << "Non Finite in LLPrimitive::setVelocityX" << LL_ENDL;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -619,7 +619,7 @@ void LLPrimitive::setVelocityY(const F32 y)
|
||||
}
|
||||
else
|
||||
{
|
||||
llerror("Non Finite in LLPrimitive::setVelocityY", 0);
|
||||
LL_ERRS() << "Non Finite in LLPrimitive::setVelocityY" << LL_ENDL;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -631,7 +631,7 @@ void LLPrimitive::setVelocityZ(const F32 z)
|
||||
}
|
||||
else
|
||||
{
|
||||
llerror("Non Finite in LLPrimitive::setVelocityZ", 0);
|
||||
LL_ERRS() << "Non Finite in LLPrimitive::setVelocityZ" << LL_ENDL;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -643,7 +643,7 @@ void LLPrimitive::addVelocity(const LLVector3& vel)
|
||||
}
|
||||
else
|
||||
{
|
||||
llerror("Non Finite in LLPrimitive::addVelocity", 0);
|
||||
LL_ERRS() << "Non Finite in LLPrimitive::addVelocity" << LL_ENDL;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -655,7 +655,7 @@ void LLPrimitive::setAcceleration(const LLVector3& accel)
|
||||
}
|
||||
else
|
||||
{
|
||||
llerrs << "Non Finite in LLPrimitive::setAcceleration(LLVector3) for " << pCodeToString(mPrimitiveCode) << llendl;
|
||||
LL_ERRS() << "Non Finite in LLPrimitive::setAcceleration(LLVector3) for " << pCodeToString(mPrimitiveCode) << LL_ENDL;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -667,7 +667,7 @@ void LLPrimitive::setAcceleration(const F32 x, const F32 y, const F32 z)
|
||||
}
|
||||
else
|
||||
{
|
||||
llerrs << "Non Finite in LLPrimitive::setAcceleration(F32,F32,F32) for " << pCodeToString(mPrimitiveCode) << llendl;
|
||||
LL_ERRS() << "Non Finite in LLPrimitive::setAcceleration(F32,F32,F32) for " << pCodeToString(mPrimitiveCode) << LL_ENDL;
|
||||
}
|
||||
}
|
||||
#endif // CHECK_FOR_FINITE
|
||||
|
||||
Reference in New Issue
Block a user