| 143 | #ifndef EIGEN_PARSED_BY_DOXYGEN |
| 144 | template<int OtherOptions> |
| 145 | inline Ref(SparseMatrix<MatScalar,OtherOptions,MatIndex>& expr) |
| 146 | { |
| 147 | EIGEN_STATIC_ASSERT(bool(Traits::template match<SparseMatrix<MatScalar,OtherOptions,MatIndex> >::MatchAtCompileTime), STORAGE_LAYOUT_DOES_NOT_MATCH); |
| 148 | eigen_assert( ((Options & int(StandardCompressedFormat))==0) || (expr.isCompressed()) ); |
| 149 | Base::construct(expr.derived()); |
| 150 | } |
| 151 | |
| 152 | template<int OtherOptions> |
| 153 | inline Ref(MappedSparseMatrix<MatScalar,OtherOptions,MatIndex>& expr) |
nothing calls this directly
no test coverage detected