1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-24 01:54:22 +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

@ -58,8 +58,8 @@ public:
@see ReferenceCountedObject, Array, OwnedArray
*/
ReferenceCountedArray (const int granularity_ = juceDefaultArrayGranularity) throw()
: data (granularity_),
ReferenceCountedArray (const int granularity = juceDefaultArrayGranularity) throw()
: data (granularity),
numUsed (0)
{
}