Browse Source

Change to avoid MSVC warnings.

tags/2021-05-28
Julian Storer 16 years ago
parent
commit
aa91094a4e
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      juce_amalgamated.h
  2. +1
    -1
      src/containers/juce_ArrayAllocationBase.h

+ 1
- 1
juce_amalgamated.h View File

@@ -2842,7 +2842,7 @@ protected:
}

/** Destructor. */
virtual ~ArrayAllocationBase()
~ArrayAllocationBase()
{
delete[] elements;
}


+ 1
- 1
src/containers/juce_ArrayAllocationBase.h View File

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


Loading…
Cancel
Save