1
0
Fork 0
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:
jules 2018-04-10 09:50:11 +01:00
parent 2204c6b263
commit d691838765
13 changed files with 82 additions and 94 deletions

View file

@ -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)
{