From aa91094a4e15e7fa8437fa97d867f4b91e3bc964 Mon Sep 17 00:00:00 2001 From: Julian Storer Date: Wed, 16 Dec 2009 21:59:23 +0000 Subject: [PATCH] Change to avoid MSVC warnings. --- juce_amalgamated.h | 2 +- src/containers/juce_ArrayAllocationBase.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/juce_amalgamated.h b/juce_amalgamated.h index a82ad1d35f..4038e11dd3 100644 --- a/juce_amalgamated.h +++ b/juce_amalgamated.h @@ -2842,7 +2842,7 @@ protected: } /** Destructor. */ - virtual ~ArrayAllocationBase() + ~ArrayAllocationBase() { delete[] elements; } diff --git a/src/containers/juce_ArrayAllocationBase.h b/src/containers/juce_ArrayAllocationBase.h index 456b5412e3..325ff89ed8 100644 --- a/src/containers/juce_ArrayAllocationBase.h +++ b/src/containers/juce_ArrayAllocationBase.h @@ -63,7 +63,7 @@ protected: } /** Destructor. */ - virtual ~ArrayAllocationBase() + ~ArrayAllocationBase() { delete[] elements; }