1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 13:47:01 -04:00

Fix warnings

This commit is contained in:
Jon Beniston
2026-03-25 18:58:43 +00:00
parent a85903a12f
commit 6e21e689e9
10 changed files with 145 additions and 53 deletions
+2 -1
View File
@@ -20,6 +20,7 @@
using namespace qtwebapp;
BufferLogger::BufferLogger(int maxSize, QObject *parent) :
Logger(parent),
m_maxSize(maxSize)
{
}
@@ -41,7 +42,7 @@ QString BufferLogger::getLog() const
{
QString log;
for (const auto s : m_messages) {
for (const auto& s : m_messages) {
log.append(s);
}