mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-25 17:28:50 -05:00
Remove obsolete code that doesn't compile in debug builds
This commit is contained in:
parent
3287346a7e
commit
ad9be9d54c
@ -201,9 +201,6 @@ int main(int argc, char **argv)
|
|||||||
code[(j + n) * CODE_LEN + i] = reinterpret_cast<ldpctool::code_type *>(simd + i)[n];
|
code[(j + n) * CODE_LEN + i] = reinterpret_cast<ldpctool::code_type *>(simd + i)[n];
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 0; i < BLOCKS * CODE_LEN; ++i)
|
|
||||||
assert(!std::isnan(code[i]));
|
|
||||||
|
|
||||||
for (ssize_t pos = 0; pos < iosize;)
|
for (ssize_t pos = 0; pos < iosize;)
|
||||||
{
|
{
|
||||||
ssize_t nw = write(1, code + pos, iosize - pos);
|
ssize_t nw = write(1, code + pos, iosize - pos);
|
||||||
|
@ -140,9 +140,6 @@ void LDPCWorker::process(QByteArray data)
|
|||||||
m_code[(j + n) * m_codeLen + i] = reinterpret_cast<ldpctool::code_type *>(m_simd + i)[n];
|
m_code[(j + n) * m_codeLen + i] = reinterpret_cast<ldpctool::code_type *>(m_simd + i)[n];
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 0; i < BLOCKS * m_codeLen; ++i)
|
|
||||||
assert(!std::isnan(m_code[i]));
|
|
||||||
|
|
||||||
m_mutexOut.lock();
|
m_mutexOut.lock();
|
||||||
for (int j = 0; j < BLOCKS; j++)
|
for (int j = 0; j < BLOCKS; j++)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user