]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
test: remove unused bool in test_intrusive_lru.cc
authorAli Maredia <amaredia@redhat.com>
Thu, 15 Sep 2022 18:39:31 +0000 (14:39 -0400)
committerKonstantin Shalygin <k0ste@k0ste.ru>
Fri, 24 Nov 2023 06:03:05 +0000 (13:03 +0700)
Signed-off-by: Ali Maredia <amaredia@redhat.com>
(cherry picked from commit b3b28a4c42194ad93e57dd6ce26b53d319f8810d)

src/test/common/test_intrusive_lru.cc

index f242bdba16004a99aaeac5db417186927d7478e7..62fb1a0829296daa909da9c0de0e21fc6c7ab927 100644 (file)
@@ -18,7 +18,6 @@ struct TestLRUItem : public ceph::common::intrusive_lru_base<
     unsigned, TestLRUItem, item_to_unsigned<TestLRUItem>>> {
   unsigned key = 0;
   int value = 0;
-  bool seen = false;
 
   TestLRUItem(unsigned key) : key(key) {}
 };