We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81e364c commit 0d32f04Copy full SHA for 0d32f04
include/eigenpy/details.hpp
@@ -29,13 +29,27 @@ namespace boost { namespace python { namespace detail {
29
std::size_t, value = sizeof(MatType));
30
};
31
32
+ template<class MatType>
33
+ struct referent_size<Eigen::MatrixBase<MatType> >
34
+ {
35
+ BOOST_STATIC_CONSTANT(
36
+ std::size_t, value = sizeof(MatType));
37
+ };
38
+
39
template<class MatType>
40
struct referent_size<Eigen::EigenBase<MatType>&>
41
{
42
BOOST_STATIC_CONSTANT(
43
44
45
46
47
+ struct referent_size<Eigen::EigenBase<MatType> >
48
49
50
51
52
53
}}}
54
55
namespace eigenpy
0 commit comments