mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-01 21:54:55 -04:00
Restored the previously suppressed __attribute__ unused in a portable way
This commit is contained in:
@@ -74,10 +74,13 @@ PluginInterface::SamplingDevices TestMIPlugin::enumSampleMIMO()
|
||||
|
||||
#ifdef SERVER_MODE
|
||||
PluginInstanceGUI* TestMIPlugin::createSampleMIMOPluginInstanceGUI(
|
||||
const QString& sourceId __attribute((unused)),
|
||||
QWidget **widget __attribute((unused)),
|
||||
DeviceUISet *deviceUISet __attribute((unused)))
|
||||
const QString& sourceId,
|
||||
QWidget **widget,
|
||||
DeviceUISet *deviceUISet)
|
||||
{
|
||||
(void) sourceId;
|
||||
(void) widget;
|
||||
(void) deviceUISet;
|
||||
return 0;
|
||||
}
|
||||
#else
|
||||
|
||||
Reference in New Issue
Block a user