Whitespace fixes. No code changes.
parent
d475853a43
commit
cf68cc2d12
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue