1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-10-02 01:36:38 -04:00

Morse feature: Add cast to fix build on Qt6.

This commit is contained in:
srcejon 2024-05-24 09:20:44 +01:00
parent 1d87e1e051
commit 77665162b7

View File

@ -188,7 +188,7 @@ int MorseDecoderWorker::processBuffer(QByteArray& bytesBuffer)
std::for_each( std::for_each(
dst.begin(), dst.begin(),
dst.end(), dst.end(),
[&](const uint8_t c) { text.append(c); } [&](const uint8_t c) { text.append((char) c); }
); );
const GGMorse::Statistics& stats = m_ggMorse->getStatistics(); const GGMorse::Statistics& stats = m_ggMorse->getStatistics();