Skip to content

Commit

Permalink
Fix clang-tidy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
marrts committed Mar 5, 2024
1 parent d828861 commit 749765a
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions tesseract_command_language/src/cartesian_waypoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,16 @@ TESSERACT_COMMON_IGNORE_WARNINGS_POP
#include <tesseract_common/utils.h>
#include <tesseract_command_language/cartesian_waypoint.h>

tesseract_planning::CartesianWaypoint::CartesianWaypoint(const Eigen::Isometry3d& transform) : transform_(transform) {}
tesseract_planning::CartesianWaypoint::CartesianWaypoint(
const Eigen::Isometry3d& transform) // NOLINT(modernize-pass-by-value)
: transform_(transform)
{
}

tesseract_planning::CartesianWaypoint::CartesianWaypoint(
const Eigen::Isometry3d& transform,
const Eigen::VectorXd& lower_tol, // NOLINT(modernize-pass-by-value)
const Eigen::VectorXd& upper_tol) // NOLINT(modernize-pass-by-value)
const Eigen::Isometry3d& transform, // NOLINT(modernize-pass-by-value)
const Eigen::VectorXd& lower_tol, // NOLINT(modernize-pass-by-value)
const Eigen::VectorXd& upper_tol) // NOLINT(modernize-pass-by-value)
: transform_(transform), lower_tolerance_(lower_tol), upper_tolerance_(upper_tol)
{
}
Expand Down

0 comments on commit 749765a

Please sign in to comment.