mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-22 16:08:39 -05:00
Morse feature: Add cast to fix build on Qt6.
This commit is contained in:
parent
1d87e1e051
commit
77665162b7
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user