mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fixed some documentation errors
This commit is contained in:
parent
d4c94439d1
commit
34bbb94e2f
3 changed files with 18 additions and 9 deletions
|
|
@ -77,7 +77,7 @@ public:
|
|||
}
|
||||
|
||||
/** Initalises from a null-terminated raw array of values.
|
||||
@param values the array to copy from
|
||||
@param data the data to copy from
|
||||
*/
|
||||
template <typename TypeToCreateFrom>
|
||||
explicit Array (const TypeToCreateFrom* data)
|
||||
|
|
@ -87,7 +87,7 @@ public:
|
|||
}
|
||||
|
||||
/** Initalises from a raw array of values.
|
||||
@param values the array to copy from
|
||||
@param data the data to copy from
|
||||
@param numValues the number of values in the array
|
||||
*/
|
||||
template <typename TypeToCreateFrom>
|
||||
|
|
|
|||
|
|
@ -27,13 +27,9 @@ namespace juce
|
|||
/**
|
||||
Implements some basic array storage allocation functions.
|
||||
|
||||
This class isn't really for public use - it's used by the other
|
||||
array classes, but might come in handy for some purposes.
|
||||
|
||||
It inherits from a critical section class to allow the arrays to use
|
||||
the "empty base class optimisation" pattern to reduce their footprint.
|
||||
|
||||
@see Array, OwnedArray, ReferenceCountedArray
|
||||
This class isn't really for public use - it used to be part of the
|
||||
container classes but has since been superseded by ArrayBase. Eventually
|
||||
it will be removed from the API.
|
||||
|
||||
@tags{Core}
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -23,6 +23,19 @@
|
|||
namespace juce
|
||||
{
|
||||
|
||||
/**
|
||||
A basic object container.
|
||||
|
||||
This class isn't really for public use - it's used by the other
|
||||
array classes, but might come in handy for some purposes.
|
||||
|
||||
It inherits from a critical section class to allow the arrays to use
|
||||
the "empty base class optimisation" pattern to reduce their footprint.
|
||||
|
||||
@see Array, OwnedArray, ReferenceCountedArray
|
||||
|
||||
@tags{Core}
|
||||
*/
|
||||
template <class ElementType, class TypeOfCriticalSectionToUse>
|
||||
class ArrayBase : public TypeOfCriticalSectionToUse
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue