diff options
Diffstat (limited to 'src/dxfdata.h')
-rw-r--r-- | src/dxfdata.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dxfdata.h b/src/dxfdata.h index 64853dc..80a23f6 100644 --- a/src/dxfdata.h +++ b/src/dxfdata.h @@ -30,6 +30,8 @@ public: #ifdef __APPLE__ std::vector<Vector2d, Eigen::aligned_allocator<Vector2d> > points; +#elif EIGEN_WORLD_VERSION == 3 + std::vector<Vector2d, Eigen::aligned_allocator<Vector3d> > points; #else std::vector<Vector2d> points; #endif |