1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00

Change to avoid MSVC warnings.

This commit is contained in:
Julian Storer 2009-12-16 21:59:23 +00:00
parent 80753f4c03
commit aa91094a4e
2 changed files with 2 additions and 2 deletions

View file

@ -2842,7 +2842,7 @@ protected:
}
/** Destructor. */
virtual ~ArrayAllocationBase()
~ArrayAllocationBase()
{
delete[] elements;
}

View file

@ -63,7 +63,7 @@ protected:
}
/** Destructor. */
virtual ~ArrayAllocationBase()
~ArrayAllocationBase()
{
delete[] elements;
}