diff options
Diffstat (limited to 'src/alloc/secmem.h')
-rw-r--r-- | src/alloc/secmem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc/secmem.h b/src/alloc/secmem.h index 884f2ebc0..4ff530ecc 100644 --- a/src/alloc/secmem.h +++ b/src/alloc/secmem.h @@ -164,7 +164,7 @@ class MemoryRegion */ void swap(MemoryRegion<T>& other); - virtual ~MemoryRegion() { deallocate(buf, allocated); } + ~MemoryRegion() { deallocate(buf, allocated); } protected: MemoryRegion() : buf(0), used(0), allocated(0), alloc(0) {} |