| Index: Source/platform/PODArena.h
|
| diff --git a/Source/platform/PODArena.h b/Source/platform/PODArena.h
|
| index bc65de6645268688242da44e51f6c560acb277c4..da9d4460fd9977d74b57d828b802bcb4c2db0c47 100644
|
| --- a/Source/platform/PODArena.h
|
| +++ b/Source/platform/PODArena.h
|
| @@ -102,7 +102,6 @@ public:
|
| };
|
|
|
| protected:
|
| - virtual ~PODArena() { }
|
| friend class WTF::RefCounted<PODArena>;
|
|
|
| PODArena()
|
| @@ -162,7 +161,7 @@ protected:
|
|
|
| // Frees the memory allocated from the Allocator in the
|
| // constructor.
|
| - virtual ~Chunk()
|
| + ~Chunk()
|
| {
|
| m_allocator->free(m_base);
|
| }
|
|
|