1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-12-22 01:20:56 -05:00

Fix lint warnings.

This commit is contained in:
Jon Beniston 2024-12-09 12:03:34 +00:00
parent 4a8adc4a42
commit 107d1ee6c8
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@
// Map from MMSI to Coast Station Name
// From https://www.itu.int/mmsapp/coaststation/list
QMap<QString, QString> CoastStations {
const QMap<QString, QString> CoastStations {
{"003311000", "AASIAAT RADIO"},
{"004224102", "ABADAN RADIO"},
{"004224300", "ABBAS RADIO"},

View File

@ -20,6 +20,6 @@
#include <QMap>
extern QMap<QString, QString> CoastStations;
extern const QMap<QString, QString> CoastStations;
#endif /* INCLUDE_COASTSTATIONS_H */