From 9be3895de04b2b137660979c1019e02992809309 Mon Sep 17 00:00:00 2001 From: Johnny Willemsen Date: Wed, 23 Jun 2021 08:39:56 +0200 Subject: Fixed unused parameter warning * ACE/tests/DLL_Test_Parent.h: --- ACE/tests/DLL_Test_Parent.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ACE/tests') diff --git a/ACE/tests/DLL_Test_Parent.h b/ACE/tests/DLL_Test_Parent.h index eba1cbc5153..0d7ecc8e10b 100644 --- a/ACE/tests/DLL_Test_Parent.h +++ b/ACE/tests/DLL_Test_Parent.h @@ -32,10 +32,10 @@ class DLL_Test_Parent_Export Data { public: Data () = default; - Data (const Data& d) = default; + Data (const Data&) = default; Data (Data&&) = default; Data& operator= (const Data&) = default; - Data& operator= (Data&& d) = default; + Data& operator= (Data&&) = default; virtual ~Data(); private: int8_t i {}; -- cgit v1.2.1