diff options
author | Brad Pitcher <bradpitcher@gmail.com> | 2011-09-28 05:42:23 (GMT) |
---|---|---|
committer | Brad Pitcher <bradpitcher@gmail.com> | 2011-09-28 05:42:23 (GMT) |
commit | 396fea7ecd90af1bd5b06143aeeff05abb7e3c0a (patch) | |
tree | 590dd1cd643e10321e5b2a5e12311168bfb44a14 | |
parent | f17d9f0057c0b735f16ae1896850ed18bfca8592 (diff) |
fixes assertion error noticed in example 21
-rw-r--r-- | src/dxfdata.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dxfdata.h b/src/dxfdata.h index bada031..79bfba9 100644 --- a/src/dxfdata.h +++ b/src/dxfdata.h @@ -30,7 +30,7 @@ public: } }; - std::vector<Vector2d> points; + std::vector<Vector2d, Eigen::aligned_allocator<Eigen::Vector2d> > points; std::vector<Path> paths; std::vector<Dim> dims; |