Skip to content
Snippets Groups Projects
Verified Commit dc6b276a authored by Justin Carpentier's avatar Justin Carpentier
Browse files

test: fix compilation warning

parent 8a84414a
No related branches found
No related tags found
No related merge requests found
...@@ -7,26 +7,24 @@ ...@@ -7,26 +7,24 @@
#include "eigenpy/eigen-from-python.hpp" #include "eigenpy/eigen-from-python.hpp"
#include "eigenpy/std-vector.hpp" #include "eigenpy/std-vector.hpp"
template <typename MatType, template <typename MatType>
typename Allocator = Eigen::aligned_allocator<MatType> > void printVectorOfMatrix(
void printVectorOfMatrix(const std::vector<MatType, Allocator> &Ms) { const std::vector<MatType, Eigen::aligned_allocator<MatType> > &Ms) {
const std::size_t n = Ms.size(); const std::size_t n = Ms.size();
for (std::size_t i = 0; i < n; i++) { for (std::size_t i = 0; i < n; i++) {
std::cout << "el[" << i << "] =\n" << Ms[i] << '\n'; std::cout << "el[" << i << "] =\n" << Ms[i] << '\n';
} }
} }
template <typename MatType, template <typename MatType>
typename Allocator = Eigen::aligned_allocator<MatType> > std::vector<MatType, Eigen::aligned_allocator<MatType> > copy(
std::vector<MatType, Allocator> copy( const std::vector<MatType, Eigen::aligned_allocator<MatType> > &Ms) {
const std::vector<MatType, Allocator> &Ms) { std::vector<MatType, Eigen::aligned_allocator<MatType> > out = Ms;
std::vector<MatType, Allocator> out = Ms;
return out; return out;
} }
template <typename MatType, template <typename MatType>
typename Allocator = Eigen::aligned_allocator<MatType> > void setZero(std::vector<MatType, Eigen::aligned_allocator<MatType> > &Ms) {
void setZero(std::vector<MatType, Allocator> &Ms) {
for (std::size_t i = 0; i < Ms.size(); i++) { for (std::size_t i = 0; i < Ms.size(); i++) {
Ms[i].setZero(); Ms[i].setZero();
} }
......
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