diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2015-11-01 17:09:52 +0100 | 
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2015-11-01 17:09:52 +0100 | 
| commit | e138d155d2f2cfb7e87c353f98ffea0e2592483f (patch) | |
| tree | 8cb3a719166c7ea5531b4e9eb4bd62d29ed7f826 | |
| parent | 1929fe27e90da135eaa2ffa3654b955d231352ff (diff) | |
simple-mat: nix porked ctor
| -rw-r--r-- | opentrack/simple-mat.hpp | 8 | 
1 files changed, 0 insertions, 8 deletions
| diff --git a/opentrack/simple-mat.hpp b/opentrack/simple-mat.hpp index e462812b..59afbbf0 100644 --- a/opentrack/simple-mat.hpp +++ b/opentrack/simple-mat.hpp @@ -198,14 +198,6 @@ public:                  data[j][i] = *iter++;      } -    template<typename t> -    Mat(const t* xs) -    { -        for (int j = 0; j < h_; j++) -            for (int i = 0; i < w_; i++) -                data[j][i] = num(*xs++); -    } -      Mat()      {          for (int j = 0; j < h_; j++) | 
