Julian Oes e101edc0e7
Matrix: fix warning if M == N (#146)
This fixes the warning appearing with GCC 10.2:

../../src/lib/matrix/matrix/Matrix.hpp:481:34: error: logical ‘and’ of equal expressions [-Werror=logical-op]
  481 |         for (size_t i = 0; i < M && i < N; i++) {
      |

I would prefered something with if constexpr but we don't have that yet
in because we're using C++14.
2020-08-24 14:19:43 +02:00
..
2020-01-13 12:21:18 +01:00
2016-07-06 01:39:06 -04:00
2020-08-07 18:44:48 +02:00
2020-08-07 18:44:48 +02:00