diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2014-11-07 06:42:09 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2014-11-07 06:42:09 +0100 |
commit | 8e9314e97a9433be35906dd9f3227c078d5f8f60 (patch) | |
tree | 87885fdaf057d73a14b4185adc48c28d3122d52f | |
parent | 433067d27bf8620efb74e94081e8d6d705c85d98 (diff) |
nix unused typedef
-rw-r--r-- | opentrack/simple-mat.hpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/opentrack/simple-mat.hpp b/opentrack/simple-mat.hpp index 5fa3acf9..8e39a14f 100644 --- a/opentrack/simple-mat.hpp +++ b/opentrack/simple-mat.hpp @@ -63,12 +63,10 @@ struct Mat for (int j = 0; j < h; j++) for (int i = 0; i < w; i++) ret.data[i][j] = data[j][i]; - + return ret; } }; template<int h, int w> using dmat = Mat<double, h, w>; -using rmat = dmat<3, 3>; - |