1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-02 06:04:39 -04:00

Fixed range-loop-construct warnings in GCC 11

This commit is contained in:
f4exb
2021-12-27 19:04:23 +01:00
parent 766695d99d
commit 63bea7734b
4 changed files with 26 additions and 26 deletions
+1 -1
View File
@@ -794,7 +794,7 @@ void MapGUI::setBeacons(QList<Beacon *> *beacons)
void MapGUI::addIBPBeacons()
{
// Add to Map
for (const auto beacon : IBPBeacon::m_beacons)
for (const auto& beacon : IBPBeacon::m_beacons)
{
SWGSDRangel::SWGMapItem beaconMapItem;
beaconMapItem.setName(new QString(beacon.m_callsign));