Silence compiler warning.

This commit is contained in:
Jeff Young 2018-08-04 11:33:33 +01:00
parent 345f57ccb8
commit fb28d45886
1 changed files with 3 additions and 0 deletions

View File

@ -328,6 +328,9 @@ DIALOG_BLOCK_OPTIONS::DIALOG_BLOCK_OPTIONS( PCB_BASE_FRAME* aParent,
DIALOG_BLOCK_OPTIONS_BASE( aParent, -1, aTitle ),
m_options( aOptions )
{
// silence another compiler warning about m_options not being used
if( m_options.includeModules )
;
}