diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-01-16 19:52:20 +0200 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-01-16 20:43:12 +0200 |
commit | 20b16ddf053733271f8cf0966f2a5c5b6ac2a8a1 (patch) | |
tree | 43769767f45b9e46f373db470309bb71a3d05483 /indra/llcommon/llallocator_heap_profile.cpp | |
parent | b34d209abc11f44349c6898ce0020e0d819109cc (diff) |
MacOS Build fix
Diffstat (limited to 'indra/llcommon/llallocator_heap_profile.cpp')
-rw-r--r-- | indra/llcommon/llallocator_heap_profile.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/indra/llcommon/llallocator_heap_profile.cpp b/indra/llcommon/llallocator_heap_profile.cpp index 6dd399e1e3..c6d9542b42 100644 --- a/indra/llcommon/llallocator_heap_profile.cpp +++ b/indra/llcommon/llallocator_heap_profile.cpp @@ -130,7 +130,6 @@ void LLAllocatorHeapProfile::parse(std::string const & prof_text) void LLAllocatorHeapProfile::dump(std::ostream & out) const { - lines_t::const_iterator i; for (const LLAllocatorHeapProfile::line& line : mLines) { out << line.mLiveCount << ": " << line.mLiveSize << '[' << line.mTotalCount << ": " << line.mTotalSize << "] @"; |