mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-01 13:47:01 -04:00
Morse feature: Add cast to fix build on Qt6.
This commit is contained in:
@@ -188,7 +188,7 @@ int MorseDecoderWorker::processBuffer(QByteArray& bytesBuffer)
|
||||
std::for_each(
|
||||
dst.begin(),
|
||||
dst.end(),
|
||||
[&](const uint8_t c) { text.append(c); }
|
||||
[&](const uint8_t c) { text.append((char) c); }
|
||||
);
|
||||
|
||||
const GGMorse::Statistics& stats = m_ggMorse->getStatistics();
|
||||
|
||||
Reference in New Issue
Block a user