summaryrefslogtreecommitdiffstats
path: root/include/plist/Key.h
diff options
context:
space:
mode:
authorGravatar Rosen Penev2020-05-30 19:49:14 -0700
committerGravatar Nikias Bassen2020-06-03 19:58:18 +0200
commit68dc3f56426d16a856d82a9a5b5c000c915d87ac (patch)
tree9438e2feff53cd27d8e8da4e38c9979fbc9f0bab /include/plist/Key.h
parentf5fb0b4cf87b50c86531a7f0e98fa0637134c925 (diff)
downloadlibplist-68dc3f56426d16a856d82a9a5b5c000c915d87ac.tar.gz
libplist-68dc3f56426d16a856d82a9a5b5c000c915d87ac.tar.bz2
c++: Fix inconsistent declarations
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'include/plist/Key.h')
-rw-r--r--include/plist/Key.h4
1 files changed, 2 insertions, 2 deletions
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();