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 7bf66d1 commit a85b2f6Copy full SHA for a85b2f6
include/eigenpy/std-vector.hpp
@@ -14,6 +14,7 @@
14
#include <string>
15
#include <vector>
16
17
+#include "eigenpy/eigenpy.hpp"
18
#include "eigenpy/config.hpp"
19
#include "eigenpy/copyable.hpp"
20
#include "eigenpy/eigen-to-python.hpp"
@@ -445,7 +446,7 @@ void EIGENPY_DLLAPI exposeStdVector();
445
446
447
template <typename MatType>
448
void exposeStdVectorEigenSpecificType(const char *name) {
- typedef std::vector<MatType> VecMatType;
449
+ typedef std::vector<MatType, Eigen::aligned_allocator<MatType> > VecMatType;
450
std::string full_name = "StdVec_";
451
full_name += name;
452
StdVectorPythonVisitor<VecMatType, false>::expose(
0 commit comments