Show
Ignore:
Timestamp:
08/16/22 16:28:29 (2 years ago)
Author:
jwoithe
Message:

ffadodevice.h: address "unnecessary parentheses" compiler warning.

Gcc 11.2.0 (and no doubt other versions) throw an "unnecessary parentheses"
warning due to the construct at line 490 in ffadodevice.h. Since the
parentheses do little to improve the clarity of the code, remove them to
suppress this compiler warning and keep the build output clean.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/libffado/src/ffadodevice.h

    r2803 r2834  
    488488        {return m_pDeviceManager;}; 
    489489private: 
    490     ffado_smartptr<ConfigRom>( m_pConfigRom )
     490    ffado_smartptr<ConfigRom> m_pConfigRom
    491491    DeviceManager& m_pDeviceManager; 
    492492    Control::Container* m_genericContainer;