diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-09-07 09:12:55 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-09-07 09:56:07 +0100 |
commit | b0f3024304bf4e7d9efcb539a49394945f052a51 (patch) | |
tree | 7d8a1a656f4d710dbeac848834c400f03a55d5d2 /configmgr | |
parent | 7ac8939cc8e7599cca3de27c8f8dc9fd9f2e2185 (diff) |
cppcheck: noExplicitCopyMoveConstructor
Change-Id: I8718ddd144bec48541e6412a8c9feb74d9391ecc
Diffstat (limited to 'configmgr')
-rw-r--r-- | configmgr/source/node.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configmgr/source/node.hxx b/configmgr/source/node.hxx index 0a90463466ef..a42b769f1b26 100644 --- a/configmgr/source/node.hxx +++ b/configmgr/source/node.hxx @@ -55,7 +55,7 @@ public: protected: explicit Node(int layer); - Node(const Node & other); + explicit Node(const Node & other); virtual ~Node(); |