| 32 | |
| 33 | template<typename Matrix_> |
| 34 | DTL_VERSIONING_CPP14_CONSTEXPR |
| 35 | void copyMatrix(Matrix_& matrix_, const Matrix_& matrix2_) noexcept { |
| 36 | matrix_ = matrix2_; |
| 37 | } |
| 38 | |
| 39 | } //namespace |
| 40 |
nothing calls this directly
no outgoing calls
no test coverage detected