Merge branch 'master' into mueller/ArrayList

This commit is contained in:
Robin Müller 2020-09-30 19:09:24 +02:00
commit 77a9a190aa

View File

@ -98,7 +98,7 @@ public:
} }
ReturnValue_t insert(std::pair<key_t, T> pair) { ReturnValue_t insert(std::pair<key_t, T> pair) {
return insert(pair.fist, pair.second); return insert(pair.first, pair.second);
} }
ReturnValue_t exists(key_t key) const { ReturnValue_t exists(key_t key) const {