summaryrefslogtreecommitdiff
path: root/a5/matrix.cc
diff options
context:
space:
mode:
Diffstat (limited to 'a5/matrix.cc')
-rw-r--r--a5/matrix.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/a5/matrix.cc b/a5/matrix.cc
index 4a34fa0..b76526c 100644
--- a/a5/matrix.cc
+++ b/a5/matrix.cc
@@ -3,6 +3,7 @@
#include "matrix.h"
#include <iostream>
+#include <string>
template<typename T, std::size_t N, std::size_t M>
std::ostream& operator<<(std::ostream& s, const Matrix<T,N,M>& m)
@@ -224,4 +225,11 @@ int main()
Matrix<Chess_piece, 2, 3> m2;
test(m1, m2);
}
+
+ std::cout << "Matrix<std::sring, .., ..>:\n";
+ {
+// Matrix<std::string, 3, 2> m1;
+// Matrix<std::string, 2, 3> m2;
+// test(m1, m2);
+ }
}