diff options
| author | JosJuice <josjuice@gmail.com> | 2021-11-13 15:09:28 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-13 15:09:28 +0100 |
| commit | 3e8427991999a4a46b9cc5f75cc161b061deda33 (patch) | |
| tree | 6fb04d38f4ce7504e0f7343564792b41f6525463 /Source/Core/Common/Matrix.cpp | |
| parent | c55721c754cebdecd68ef6873c1f1837776322fc (diff) | |
| parent | 834a59d89b3d6c54015b1b661f8f69243cf06b3f (diff) | |
Merge pull request #10208 from thatSteveFan/patch-1
Minor comment fix in Matrix.cpp
Diffstat (limited to 'Source/Core/Common/Matrix.cpp')
| -rw-r--r-- | Source/Core/Common/Matrix.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Matrix.cpp b/Source/Core/Common/Matrix.cpp index f53bff0efb..8e4d504398 100644 --- a/Source/Core/Common/Matrix.cpp +++ b/Source/Core/Common/Matrix.cpp @@ -10,7 +10,7 @@ namespace { -// Multiply a NxM matrix by a NxP matrix. +// Multiply a NxM matrix by a MxP matrix. template <int N, int M, int P, typename T> auto MatrixMultiply(const std::array<T, N * M>& a, const std::array<T, M * P>& b) -> std::array<T, N * P> |
