Remove unneeded deallocate (GH #485)

This should have been yanked when we removed the same for allocate
This commit is contained in:
Jeffrey Walton 2017-08-31 22:50:09 -04:00
parent 55a5dd8b85
commit b47de6150f
No known key found for this signature in database
GPG Key ID: B36AB348921B1838

View File

@ -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
};