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

@@ -90,7 +90,7 @@ bool _read_file_into_string(std::string& str, const std::string& filename)
llifstream ifs(filename, llifstream::binary);
if (!ifs.is_open())
{
llinfos << "Unable to open file " << filename << llendl;
LL_INFOS() << "Unable to open file " << filename << LL_ENDL;
return false;
}
@@ -168,7 +168,7 @@ S32 wchar_to_utf8chars(llwchar in_char, char* outchars)
}
else
{
llwarns << "Invalid Unicode character " << cur_char << "!" << llendl;
LL_WARNS() << "Invalid Unicode character " << cur_char << "!" << LL_ENDL;
*outchars++ = LL_UNKNOWN_CHAR;
}
return outchars - base;