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

Updated the API documentation

This commit is contained in:
Julian Storer 2009-12-20 16:01:35 +00:00
parent 796848eb8b
commit 9e53cdc78e
9 changed files with 58 additions and 48 deletions

View file

@ -62,8 +62,8 @@ public:
used by the array will grow. Only change it from the default if you know the
array is going to be very big and needs to be able to grow efficiently.
*/
Array (const int granularity_ = juceDefaultArrayGranularity) throw()
: data (granularity_),
Array (const int granularity = juceDefaultArrayGranularity) throw()
: data (granularity),
numUsed (0)
{
}