From 68dc3f56426d16a856d82a9a5b5c000c915d87ac Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Sat, 30 May 2020 19:49:14 -0700 Subject: c++: Fix inconsistent declarations Signed-off-by: Rosen Penev --- include/plist/Key.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/plist/Key.h') diff --git a/include/plist/Key.h b/include/plist/Key.h index c680f1c..e75aabc 100644 --- a/include/plist/Key.h +++ b/include/plist/Key.h @@ -33,8 +33,8 @@ class Key : public Node public : Key(Node* parent = NULL); Key(plist_t node, Node* parent = NULL); - Key(const Key& s); - Key& operator=(Key& s); + Key(const Key& k); + Key& operator=(Key& k); Key(const std::string& s); virtual ~Key(); -- cgit v1.1-32-gdbae