mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-07-03 09:25:23 -04:00
Scope: removed useless resizing of complex trace by 4 times the amount actually needed
This commit is contained in:
parent
489a55a886
commit
7faee5f212
@ -723,7 +723,7 @@ private:
|
|||||||
|
|
||||||
for (std::vector<TraceBackBuffer>::iterator it = m_traceBackBuffers.begin(); it != m_traceBackBuffers.end(); ++it)
|
for (std::vector<TraceBackBuffer>::iterator it = m_traceBackBuffers.begin(); it != m_traceBackBuffers.end(); ++it)
|
||||||
{
|
{
|
||||||
it->resize(4*m_traceSize); // TODO: why 4?
|
it->resize(m_traceSize); // was multiplied by 4
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user