matrix_dummy.cpp 217 B

12345678910111213
  1. //
  2. // matrix_dummy.cpp
  3. // matrix
  4. //
  5. // Created by Sam Jaffe on 6/3/18.
  6. //
  7. #include "matrix.hpp"
  8. namespace math { namespace matrix {
  9. template class matrix<int, 2, 2>;
  10. template class row_reference<int, 2>;
  11. } }