diff options
Diffstat (limited to 'src/dxfdata.h')
-rw-r--r-- | src/dxfdata.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/dxfdata.h b/src/dxfdata.h index d24541c..e2f229e 100644 --- a/src/dxfdata.h +++ b/src/dxfdata.h @@ -1,5 +1,8 @@ #ifndef DXFDATA_H_ #define DXFDATA_H_ +#ifndef EIGEN_DONT_ALIGN +#define EIGEN_DONT_ALIGN +#endif #include <vector> #include <Eigen/Dense> @@ -30,7 +33,7 @@ public: } }; - std::vector<Vector2d, Eigen::aligned_allocator<Vector2d> > points; + std::vector<Vector2d> points; std::vector<Path> paths; std::vector<Dim> dims; |