Skip to content

Commit

Permalink
Removed const specifiers from DH chain transforms and base transform …
Browse files Browse the repository at this point in the history
…to support move assignment
  • Loading branch information
marip8 committed Jul 29, 2020
1 parent 8d48cd4 commit a5d672b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rct_optimizations/include/rct_optimizations/dh_chain.h
Original file line number Diff line number Diff line change
Expand Up @@ -201,9 +201,9 @@ class DHChain

protected:
/** @brief The DH transforms that make up the chain */
const std::vector<DHTransform> transforms_;
std::vector<DHTransform> transforms_;
/** @brief Fixed transform offset to the beginning of the chain */
const Eigen::Isometry3d base_offset_;
Eigen::Isometry3d base_offset_;
};

} // namespace rct_optimizations

0 comments on commit a5d672b

Please sign in to comment.