Skip to content

Commit

Permalink
clang-tidy fixes for trajopt_common
Browse files Browse the repository at this point in the history
  • Loading branch information
rjoomen committed Jul 12, 2024
1 parent b2bbade commit 2cf36e7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace trajopt_common
{
inline std::vector<double> toDblVec(const Eigen::Matrix<double, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor>& x)
{
return std::vector<double>(x.data(), x.data() + x.size());
return { x.data(), x.data() + x.size() };
}
inline Eigen::VectorXd toVectorXd(const std::vector<double>& x)
{
Expand Down
12 changes: 0 additions & 12 deletions trajopt_common/src/test_logging.cpp

This file was deleted.

0 comments on commit 2cf36e7

Please sign in to comment.