1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-30 02:50:05 +00:00

New class HeapBlock, which provides a safe and object-oriented way to allocate heap space. I've used HeapBlocks to replace almost all uses of malloc/free throughout the codebase.

This commit is contained in:
Julian Storer 2010-01-02 14:55:44 +00:00
parent 8c988319ec
commit 4ed1d791e5
86 changed files with 22712 additions and 22630 deletions

View file

@ -27,7 +27,7 @@
#define __JUCE_STRINGARRAY_JUCEHEADER__
#include "juce_String.h"
#include "../containers/juce_VoidArray.h"
#include "../containers/juce_OwnedArray.h"
#ifndef DOXYGEN
// (used in StringArray::appendNumbersToDuplicates)
@ -325,7 +325,7 @@ public:
juce_UseDebuggingNewOperator
private:
VoidArray strings;
OwnedArray <String> strings;
};