Skip to content

Commit

Permalink
fix: correctly call base constructor on empty CartesianTrajectory
Browse files Browse the repository at this point in the history
  • Loading branch information
bpapaspyros committed Feb 4, 2025
1 parent 1e418b7 commit 17293a2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include "state_representation/exceptions/IncompatibleReferenceFramesException.hpp"

namespace state_representation {
CartesianTrajectory::CartesianTrajectory() {
CartesianTrajectory::CartesianTrajectory() : TrajectoryBase<CartesianTrajectoryPoint>() {
this->set_type(StateType::CARTESIAN_TRAJECTORY);
}

Expand Down

0 comments on commit 17293a2

Please sign in to comment.