Whitespace fixes. No code changes.

master
Tonya Souther 2015-08-16 09:07:35 -05:00
parent d475853a43
commit cf68cc2d12
1 changed files with 14 additions and 14 deletions

View File

@ -1140,26 +1140,26 @@ LLSD LLMemoryInfo::loadStatsMap( bool aProcessMemoryOnly )
}
catch (const boost::bad_lexical_cast&)
{
//<FS:TS> FIRE-10950: Deal with VM sizes too big to fit in 32 bits
//<FS:TS> FIRE-10950: Deal with VM sizes too big to fit in 32 bits
//LL_WARNS("LLMemoryInfo") << "couldn't parse '" << value_str
// << "' in " << MEMINFO_FILE << " line: "
// << line << LL_ENDL;
//continue;
U64 bigvalue = 0;
U64 bigvalue = 0;
try
{
bigvalue = boost::lexical_cast<U64>(value_str);
}
catch (const boost::bad_lexical_cast&)
{
LL_WARNS("LLMemoryInfo") << "couldn't parse '" << value_str
<< "' in " << MEMINFO_FILE << " line: "
<< line << LL_ENDL;
continue;
}
stats.add(key,bigvalue);
continue;
//</FS:TS> FIRE-10950
bigvalue = boost::lexical_cast<U64>(value_str);
}
catch (const boost::bad_lexical_cast&)
{
LL_WARNS("LLMemoryInfo") << "couldn't parse '" << value_str
<< "' in " << MEMINFO_FILE << " line: "
<< line << LL_ENDL;
continue;
}
stats.add(key,bigvalue);
continue;
//</FS:TS> FIRE-10950
}
// Store this statistic.
stats.add(key, value);