summaryrefslogtreecommitdiffhomepage
path: root/opentrack/simple-mat.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'opentrack/simple-mat.hpp')
-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++)