I have to create a std::vector
containing vectors of Eigen::Vector2d
. This is how I do the declaration :
std::vector< std::vector< Eigen::Vector2d > > markingsPointSets;
and I try to push back some elements I created like that :
Eigen::Vector2d firstMarkingPoint(markingPointA[0] + AB_perp[0] * .15, markingPointA[1] + AB_perp[1] * .15); // Don't mind to the value of this variable :p
markingsPointSets.at(i).push_back(firstMarkingPoint);
but this gives me :
error c2719 formal parameter with __declspec(align('16')) won't be aligned
Please tell me if there are some missing information to find the source of this problem.