summaryrefslogtreecommitdiffhomepage
path: root/opentrack
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2015-11-01 17:09:52 +0100
committerStanislaw Halik <sthalik@misaki.pl>2015-11-01 17:09:52 +0100
commite138d155d2f2cfb7e87c353f98ffea0e2592483f (patch)
tree8cb3a719166c7ea5531b4e9eb4bd62d29ed7f826 /opentrack
parent1929fe27e90da135eaa2ffa3654b955d231352ff (diff)
simple-mat: nix porked ctor
Diffstat (limited to 'opentrack')
-rw-r--r--opentrack/simple-mat.hpp8
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++)