summaryrefslogtreecommitdiff
path: root/ACE/tests
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-06-23 08:39:56 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-06-23 08:39:56 +0200
commit9be3895de04b2b137660979c1019e02992809309 (patch)
treef8f5112391418209346710d56663aa676c06b7ec /ACE/tests
parent74eb535936de21c734f536843123817ab2f04abf (diff)
downloadATCD-9be3895de04b2b137660979c1019e02992809309.tar.gz
Fixed unused parameter warning
* ACE/tests/DLL_Test_Parent.h:
Diffstat (limited to 'ACE/tests')
-rw-r--r--ACE/tests/DLL_Test_Parent.h4
1 files changed, 2 insertions, 2 deletions
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 {};