| Index: Source/platform/Supplementable.h
|
| diff --git a/Source/platform/Supplementable.h b/Source/platform/Supplementable.h
|
| index 6df209b43597b8f4e0324baaaf8e4dd99ed89c0d..9b29c653f89c02967d1b0914400cd6f29f0b185e 100644
|
| --- a/Source/platform/Supplementable.h
|
| +++ b/Source/platform/Supplementable.h
|
| @@ -119,12 +119,14 @@ public:
|
| };
|
|
|
| template<>
|
| -class SupplementTracing<false> { };
|
| +class SupplementTracing<false> {
|
| +public:
|
| + virtual ~SupplementTracing() { }
|
| +};
|
|
|
| template<typename T, bool isGarbageCollected = false>
|
| class SupplementBase : public SupplementTracing<isGarbageCollected> {
|
| public:
|
| - virtual ~SupplementBase() { }
|
| #if SECURITY_ASSERT_ENABLED
|
| virtual bool isRefCountedWrapper() const { return false; }
|
| #endif
|
|
|