From b47de6150f44c8bb2e64c0721eebda0f87dce8c1 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Thu, 31 Aug 2017 22:50:09 -0400 Subject: [PATCH] Remove unneeded deallocate (GH #485) This should have been yanked when we removed the same for allocate --- secblock.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/secblock.h b/secblock.h index 2428baf3..6af1663d 100644 --- a/secblock.h +++ b/secblock.h @@ -301,12 +301,6 @@ public: CRYPTOPP_ASSERT(false); } - void deallocate(void *p, size_type n, size_type m) - { - CRYPTOPP_UNUSED(p); CRYPTOPP_UNUSED(n), CRYPTOPP_UNUSED(m); - CRYPTOPP_ASSERT(false); - } - CRYPTOPP_CONSTEXPR size_type max_size() const {return 0;} //LCOV_EXCL_STOP };