summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2023-04-21 12:56:53 +0200
committerGravatar Nikias Bassen2023-04-21 12:56:53 +0200
commit8aeda7886c590decfddb86ca2d17333b49f1a9d3 (patch)
tree24fb197f6d4776df20cab2fbe54ce5b313c76969 /src
parent6e65e1bfb487a893a4d8dbd2a812686677ad784d (diff)
downloadlibplist-8aeda7886c590decfddb86ca2d17333b49f1a9d3.tar.gz
libplist-8aeda7886c590decfddb86ca2d17333b49f1a9d3.tar.bz2
C++: Remove deprecated Insert()
Diffstat (limited to 'src')
-rw-r--r--src/Dictionary.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/Dictionary.cpp b/src/Dictionary.cpp
index 5e76cb6..99e3b88 100644
--- a/src/Dictionary.cpp
+++ b/src/Dictionary.cpp
@@ -167,11 +167,6 @@ Dictionary::iterator Dictionary::Set(const std::string& key, const Node& node)
return Set(key, &node);
}
-Dictionary::iterator Dictionary::Insert(const std::string& key, Node* node)
-{
- return this->Set(key, node);
-}
-
void Dictionary::Remove(Node* node)
{
if (node)