From 8aeda7886c590decfddb86ca2d17333b49f1a9d3 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Fri, 21 Apr 2023 12:56:53 +0200 Subject: C++: Remove deprecated Insert() --- src/Dictionary.cpp | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src') 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) -- cgit v1.1-32-gdbae