aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4profiling.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4profiling.cpp')
-rw-r--r--src/qml/jsruntime/qv4profiling.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/jsruntime/qv4profiling.cpp b/src/qml/jsruntime/qv4profiling.cpp
index ed0dba1809..df63d4bdf7 100644
--- a/src/qml/jsruntime/qv4profiling.cpp
+++ b/src/qml/jsruntime/qv4profiling.cpp
@@ -88,10 +88,10 @@ void Profiler::startProfiling(quint64 features)
(qint64)m_engine->memoryManager->getLargeItemsMem(),
HeapPage};
m_memory_data.append(heap);
- MemoryAllocationProperties small = {timestamp,
+ MemoryAllocationProperties smallP = {timestamp,
(qint64)m_engine->memoryManager->getUsedMem(),
SmallItem};
- m_memory_data.append(small);
+ m_memory_data.append(smallP);
MemoryAllocationProperties large = {timestamp,
(qint64)m_engine->memoryManager->getLargeItemsMem(),
LargeItem};