diff options
| author | Richard Linden <none@none> | 2013-05-31 23:41:30 -0700 | 
|---|---|---|
| committer | Richard Linden <none@none> | 2013-05-31 23:41:30 -0700 | 
| commit | aa7024ffbacdd9e8ac0bfaca86d54f2dd9e1dda7 (patch) | |
| tree | cf6d77e9638e3f2e0b93b58d35e5ad6605a38c72 | |
| parent | fd21ddd9d0adf7342fe89d371868c3f7f7ca9f5f (diff) | |
BUILDFIX - const correctness
| -rw-r--r-- | indra/newview/llviewerstats.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/newview/llviewerstats.cpp b/indra/newview/llviewerstats.cpp index 635611c02e..06a53787e7 100644 --- a/indra/newview/llviewerstats.cpp +++ b/indra/newview/llviewerstats.cpp @@ -263,7 +263,7 @@ void LLViewerStats::updateFrameStats(const F64 time_diff)  	mLastTimeDiff = time_diff;  } -void LLViewerStats::addToMessage(LLSD &body) const +void LLViewerStats::addToMessage(LLSD &body)  {  	LLSD &misc = body["misc"]; | 
