1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-24 19:14:15 -04:00

Windows: MSVC2017: fixed more attribute unused cases (1)

This commit is contained in:
f4exb
2018-11-13 00:45:03 +01:00
parent d910675587
commit dc2f25a00b
46 changed files with 317 additions and 146 deletions
+6 -3
View File
@@ -872,8 +872,9 @@ bool SSBMod::deserialize(const QByteArray& data)
int SSBMod::webapiSettingsGet(
SWGSDRangel::SWGChannelSettings& response,
QString& errorMessage __attribute__((unused)))
QString& errorMessage)
{
(void) errorMessage;
response.setSsbModSettings(new SWGSDRangel::SWGSSBModSettings());
response.getSsbModSettings()->init();
webapiFormatChannelSettings(response, m_settings);
@@ -884,8 +885,9 @@ int SSBMod::webapiSettingsPutPatch(
bool force,
const QStringList& channelSettingsKeys,
SWGSDRangel::SWGChannelSettings& response,
QString& errorMessage __attribute__((unused)))
QString& errorMessage)
{
(void) errorMessage;
SSBModSettings settings = m_settings;
bool frequencyOffsetChanged = false;
@@ -1018,8 +1020,9 @@ int SSBMod::webapiSettingsPutPatch(
int SSBMod::webapiReportGet(
SWGSDRangel::SWGChannelReport& response,
QString& errorMessage __attribute__((unused)))
QString& errorMessage)
{
(void) errorMessage;
response.setSsbModReport(new SWGSDRangel::SWGSSBModReport());
response.getSsbModReport()->init();
webapiFormatChannelReport(response);