From fb28d45886e13c95f146cab9b86f729f85b0b573 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Sat, 4 Aug 2018 11:33:33 +0100 Subject: [PATCH] Silence compiler warning. --- qa/common/mocks.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/qa/common/mocks.cpp b/qa/common/mocks.cpp index aa4b159bcb..9e24af182a 100644 --- a/qa/common/mocks.cpp +++ b/qa/common/mocks.cpp @@ -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 ) + ; }