Merge pull request #10208 from thatSteveFan/patch-1
Minor comment fix in Matrix.cpp
This commit is contained in:
commit
3e84279919
|
@ -10,7 +10,7 @@
|
||||||
|
|
||||||
namespace
|
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>
|
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)
|
auto MatrixMultiply(const std::array<T, N * M>& a, const std::array<T, M * P>& b)
|
||||||
-> std::array<T, N * P>
|
-> std::array<T, N * P>
|
||||||
|
|
Loading…
Reference in New Issue