From 2d2e74d3e3d01a772691a40a7a5c82874d728253 Mon Sep 17 00:00:00 2001
From: "pre-commit-ci[bot]"
 <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Date: Fri, 4 Nov 2022 13:29:02 +0000
Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
---
 include/eigenpy/std-vector.hpp | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/include/eigenpy/std-vector.hpp b/include/eigenpy/std-vector.hpp
index 64806e83..39612b15 100644
--- a/include/eigenpy/std-vector.hpp
+++ b/include/eigenpy/std-vector.hpp
@@ -72,7 +72,8 @@ struct build_list<vector_type, true> {
 };
 
 /// \brief Change the behaviour of indexing (method __getitem__ in Python).
-/// This is suitable for container of Eigen matrix objects if you want to mutate them.
+/// This is suitable for container of Eigen matrix objects if you want to mutate
+/// them.
 template <typename Container>
 struct overload_base_get_item_for_std_vector
     : public boost::python::def_visitor<
@@ -129,8 +130,8 @@ struct overload_base_get_item_for_std_vector
 namespace boost {
 namespace python {
 
-/// \brief Specialization of the boost::python::extract struct for references to Eigen
-/// matrix objects.
+/// \brief Specialization of the boost::python::extract struct for references to
+/// Eigen matrix objects.
 template <typename Scalar, int Rows, int Cols, int Options, int MaxRows,
           int MaxCols>
 struct extract<Eigen::Matrix<Scalar, Rows, Cols, Options, MaxRows, MaxCols> &>
-- 
GitLab