mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-11-03 21:20:31 -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(
 | 
					        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();
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user