matrix_dummy.cpp 177 B

123456789101112
  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. } }