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:
parent
12e99c7152
commit
945b3e8a14
1 changed files with 4 additions and 1 deletions
|
|
@ -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>;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue