No longer include llerrorlegacy.h. Updated llstl to include deletion utilites.

This commit is contained in:
Shyotl
2015-06-19 03:54:20 -05:00
parent 283f5298d5
commit 1c627317ec
634 changed files with 8200 additions and 12214 deletions

View File

@@ -75,7 +75,7 @@ public:
const LLDrawable& operator=(const LLDrawable& rhs)
{
llerrs << "Illegal operation!" << llendl;
LL_ERRS() << "Illegal operation!" << LL_ENDL;
return *this;
}
@@ -353,13 +353,13 @@ inline LLFace* LLDrawable::getFace(const S32 i) const
if ((U32) i >= mFaces.size())
{
llwarns << "Invalid face index." << llendl;
LL_WARNS() << "Invalid face index." << LL_ENDL;
return NULL;
}
if (!mFaces[i])
{
llwarns << "Null face found." << llendl;
LL_WARNS() << "Null face found." << LL_ENDL;
return NULL;
}