mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Tidied up a few minor coding style discrepencies
This commit is contained in:
parent
2204c6b263
commit
d691838765
13 changed files with 82 additions and 94 deletions
|
|
@ -120,9 +120,9 @@ Matrix<ElementType> Matrix<ElementType>::operator* (const Matrix<ElementType>& o
|
|||
|
||||
size_t offsetMat = 0, offsetlhs = 0;
|
||||
|
||||
auto *dst = result.getRawDataPointer();
|
||||
auto *a = getRawDataPointer();
|
||||
auto *b = other.getRawDataPointer();
|
||||
auto* dst = result.getRawDataPointer();
|
||||
auto* a = getRawDataPointer();
|
||||
auto* b = other.getRawDataPointer();
|
||||
|
||||
for (size_t i = 0; i < n; ++i)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue