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

DSP: Added template specialisations of the Matrix class

This commit is contained in:
tpoole 2017-08-23 14:19:27 +01:00
parent 12e99c7152
commit 945b3e8a14

View file

@ -277,7 +277,7 @@ String Matrix<ElementType>::toString() const
StringArray entries;
int sizeMax = 0;
auto* p = data.getRawDataPointer();
auto* p = data.begin();
for (size_t i = 0; i < rows; ++i)
{
@ -306,3 +306,6 @@ String Matrix<ElementType>::toString() const
return result.toString();
}
template class Matrix<float>;
template class Matrix<double>;