From 5b22effaa637152f677d4ecb008dc3bbc11e732a Mon Sep 17 00:00:00 2001 From: levlam Date: Wed, 17 Aug 2022 16:34:21 +0300 Subject: [PATCH] Remove unused SeqKeyValue method. --- tddb/td/db/SeqKeyValue.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tddb/td/db/SeqKeyValue.h b/tddb/td/db/SeqKeyValue.h index 6cf5627c2..3379bb2cc 100644 --- a/tddb/td/db/SeqKeyValue.h +++ b/tddb/td/db/SeqKeyValue.h @@ -51,13 +51,6 @@ class SeqKeyValue { return it->second; } - template - void foreach(const F &f) { - for (auto &it : map_) { - f(it.first, it.second); - } - } - size_t size() const { return map_.size(); }