Skip to content
Snippets Groups Projects
Commit 27cdbe00 authored by Carlos Mastalli's avatar Carlos Mastalli
Browse files

[bugfix] Fixed allocator (this error was triggered at compilation time by clang)

parent 4ff694d0
No related branches found
No related tags found
No related merge requests found
Pipeline #18643 failed
......@@ -34,7 +34,7 @@ template <typename Time = double, typename Numeric = Time, bool Safe = false,
struct cubic_hermite_spline : public curve_abc<Time, Numeric, Safe, Point> {
typedef Point point_t;
typedef std::pair<Point, Point> pair_point_tangent_t;
typedef std::vector<pair_point_tangent_t, Eigen::aligned_allocator<Point> >
typedef std::vector<pair_point_tangent_t, Eigen::aligned_allocator<pair_point_tangent_t> >
t_pair_point_tangent_t;
typedef std::vector<Time> vector_time_t;
typedef Time time_t;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment