1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fixed some Doxygen warnings in juce_AudioBlock.h

This commit is contained in:
Noah Dayan 2018-05-02 13:01:35 +01:00
parent 8a02eeb39c
commit a21ff3356d

View file

@ -265,7 +265,7 @@ public:
All indices and sizes are in the receiver's units, i.e. if SampleType is a
SIMDRegister then incrementing srcPos by one will increase the sample position
in the AudioBuffer's units by a factor of SIMDRegister::<SampleType>::SIMDNumElements.
in the AudioBuffer's units by a factor of SIMDRegister::\<SampleType\>::SIMDNumElements.
*/
forcedinline AudioBlock& copyFrom (const AudioBuffer<NumericType>& src, size_t srcPos = 0, size_t dstPos = 0,
size_t numElements = std::numeric_limits<size_t>::max())
@ -287,7 +287,7 @@ public:
All indices and sizes are in the receiver's units, i.e. if SampleType is a
SIMDRegister then incrementing dstPos by one will increase the sample position
in the AudioBuffer's units by a factor of SIMDRegister::<SampleType>::SIMDNumElements.
in the AudioBuffer's units by a factor of SIMDRegister::\<SampleType\>::SIMDNumElements.
*/
forcedinline const AudioBlock& copyTo (AudioBuffer<NumericType>& dst, size_t srcPos = 0, size_t dstPos = 0,
size_t numElements = std::numeric_limits<size_t>::max()) const