From bf35157a4a6b4c81a7ac7c3a99ced3e88335a1ce Mon Sep 17 00:00:00 2001 From: Stanislav Angelovic Date: Mon, 8 Jul 2019 09:58:22 +0200 Subject: [PATCH] Comment out unused parameter --- tests/integrationtests/AdaptorAndProxy_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integrationtests/AdaptorAndProxy_test.cpp b/tests/integrationtests/AdaptorAndProxy_test.cpp index 6d7927e..1220b47 100644 --- a/tests/integrationtests/AdaptorAndProxy_test.cpp +++ b/tests/integrationtests/AdaptorAndProxy_test.cpp @@ -468,7 +468,7 @@ TEST_F(SdbusTestObject, EmitsPropertyChangedSignalForSelectedProperties) std::atomic signalReceived{false}; m_proxy->m_onPropertiesChangedHandler = [&signalReceived]( const std::string& interfaceName , const std::map& changedProperties - , const std::vector& invalidatedProperties ) + , const std::vector& /*invalidatedProperties*/ ) { EXPECT_THAT(interfaceName, Eq(INTERFACE_NAME)); EXPECT_THAT(changedProperties, SizeIs(1));