28 #ifndef REMORA_MATRIX_HPP 29 #define REMORA_MATRIX_HPP 32 #include "detail/traits.hpp" 47 template<
class T,
class L=row_major,
class Tag = cpu_tag>
51 template<
class T,
class L,
class Tag>
52 struct matrix_temporary_type<T,L,dense_tag, Tag>{
53 typedef matrix<T,L, Tag> type;
56 template<
class T,
class Tag>
57 struct matrix_temporary_type<T,unknown_orientation,dense_tag, Tag>{
58 typedef matrix<T,row_major, Tag> type;